{
  "info": {
    "name": "Search api — mcp.ai",
    "description": "REST API for the Search api MCP. Set {{apiKey}} to a workspace key (sk_live_…) created at https://mcp.ai/settings/api-keys.",
    "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json"
  },
  "auth": {
    "type": "bearer",
    "bearer": [
      {
        "key": "token",
        "value": "{{apiKey}}",
        "type": "string"
      }
    ]
  },
  "variable": [
    {
      "key": "baseUrl",
      "value": "https://api.mcp.ai/api/search_api",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "search_api_get_account_info",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/account/info",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "account",
            "info"
          ]
        },
        "description": "Tool to retrieve account usage statistics including monthly usage, remaining credits, hourly limits, and subscription period information. Use when you need to check current account status or usage lim",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"zero_retention\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "search_api_get_cached_search_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cached/search/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cached",
            "search",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve cached search results by search ID in JSON format. Use when you need to access previously executed search results without re-running the query. The search ID is found in the search_me",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"search_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "search_api_get_cached_search_html_by_id",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/cached/search/html/by/id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "cached",
            "search",
            "html",
            "by",
            "id"
          ]
        },
        "description": "Tool to retrieve cached search results by search ID in HTML format. Use when you need to access the raw HTML snapshot of a previous search execution. The search ID is available in the search_metadata.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"search_id\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "search_api_get_locations",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/locations",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "locations"
          ]
        },
        "description": "Tool to get available locations for geo-localized search queries. Use when you need to find location identifiers for targeting Google searches to specific geographic areas. Returns location metadata i",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"limit\": 0,\n  \"zero_retention\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "search_api_search",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/search",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "search"
          ]
        },
        "description": "Tool to perform unified search across 40+ search engines including Google, Bing, Yahoo, DuckDuckGo, YouTube, Amazon, and more. Use when you need to retrieve search results with rich structured data in",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"q\": \"\",\n  \"cr\": \"\",\n  \"gl\": \"\",\n  \"hl\": \"\",\n  \"lr\": \"\",\n  \"num\": 0,\n  \"nfpr\": 0,\n  \"page\": 0,\n  \"safe\": \"\",\n  \"uule\": \"\",\n  \"kgmid\": \"\",\n  \"device\": \"\",\n  \"engine\": \"\",\n  \"filter\": 0,\n  \"location\": \"\",\n  \"time_period\": \"\",\n  \"google_domain\": \"\",\n  \"zero_retention\": false,\n  \"time_period_max\": \"\",\n  \"time_period_min\": \"\",\n  \"optimization_strategy\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}