{
  "openapi": "3.1.0",
  "info": {
    "title": "ForkPoint Agent API",
    "description": "Programmatic interface for interacting with ForkPoint's e-commerce consultancy resources.",
    "version": "1.0.0"
  },
  "servers": [
    {
      "url": "https://forkpoint.com"
    }
  ],
  "paths": {
    "/search": {
      "get": {
        "summary": "Search across the ForkPoint website",
        "description": "Query articles, news, and services.",
        "parameters": [
          {
            "name": "q",
            "in": "query",
            "required": true,
            "schema": {
              "type": "string"
            }
          }
        ],
        "responses": {
          "200": {
            "description": "Search results page"
          }
        }
      }
    },
    "/contact-us/": {
      "get": {
        "summary": "Get contact information",
        "responses": {
          "200": {
            "description": "Contact page with forms and office locations"
          }
        }
      }
    }
  }
}
