{
  "info": {
    "name": "Crawlbase — mcp.ai",
    "description": "REST API for the Crawlbase 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/crawlbase",
      "type": "string"
    },
    {
      "key": "apiKey",
      "value": "sk_live_...",
      "type": "string"
    }
  ],
  "item": [
    {
      "name": "crawlbase_crawl_url",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/crawl/url",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "crawl",
            "url"
          ]
        },
        "description": "Fetch a public HTTP or HTTPS URL through Crawlbase using the connected Normal token and return its content with separate target and Crawlbase statuses.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"url\": \"\",\n  \"store\": false,\n  \"device\": \"\",\n  \"cookies\": \"\",\n  \"country\": \"\",\n  \"scraper\": \"\",\n  \"autoparse\": false,\n  \"user_agent\": \"\",\n  \"tor_network\": false,\n  \"output_format\": \"\",\n  \"cookie_session\": \"\",\n  \"request_headers\": {},\n  \"custom_success_codes\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "crawlbase_delete_stored_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/delete/stored/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "delete",
            "stored",
            "pages"
          ]
        },
        "description": "Irreversibly delete explicitly selected pages from Crawlbase Cloud Storage by request ID and return each page's deletion outcome.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "crawlbase_generate_user_agents",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/generate/user/agents",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "generate",
            "user",
            "agents"
          ]
        },
        "description": "Generate one to ten realistic randomized User-Agent strings for a selected device class.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"size\": 0,\n  \"device\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "crawlbase_get_crawling_usage",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/crawling/usage",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "crawling",
            "usage"
          ]
        },
        "description": "Return current Crawling API usage and optionally previous-month statistics for the connected Crawlbase account.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"include_previous_month\": false\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "crawlbase_get_storage_count",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/storage/count",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "storage",
            "count"
          ]
        },
        "description": "Return the number of pages currently held in Crawlbase Cloud Storage.",
        "body": {
          "mode": "raw",
          "raw": "{}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "crawlbase_get_stored_page",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/stored/page",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "stored",
            "page"
          ]
        },
        "description": "Retrieve the latest Crawlbase Cloud Storage page by exactly one request ID or original URL.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rid\": \"\",\n  \"url\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "crawlbase_get_stored_pages",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/get/stored/pages",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "get",
            "stored",
            "pages"
          ]
        },
        "description": "Retrieve up to 100 Crawlbase Cloud Storage pages by request ID without deleting them. Returns decoded page content and identifies requested IDs that were not found.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"rids\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    },
    {
      "name": "crawlbase_list_stored_page_ids",
      "request": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          }
        ],
        "url": {
          "raw": "{{baseUrl}}/list/stored/page/ids",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "list",
            "stored",
            "page",
            "ids"
          ]
        },
        "description": "Return one page of Crawlbase Cloud Storage request IDs and a short-lived continuation cursor.",
        "body": {
          "mode": "raw",
          "raw": "{\n  \"limit\": 0,\n  \"order\": \"\",\n  \"next_cursor\": \"\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        }
      }
    }
  ]
}