What is Parse?
Parse lets you create structured APIs from any website. Give it a URL and describe the data you need — Parse builds a working API with typed endpoints, parameters, and response schemas. What you can do:- Create APIs — Submit a URL via
POST /dispatchand Parse generates a full API with endpoints, input parameters, and structured responses - Browse your APIs — List all your APIs with
GET /dispatch/tasksand get full specs viaGET /dispatch/tasks/{id} - Execute endpoints — Call any generated endpoint directly via
POST /scraper/{scraper_id}/{endpoint_name} - Revise and extend — Request changes to existing APIs with
POST /dispatch/tasks/{id}/revise - Export specs — Get OpenAPI 3.1 or MCP tool definitions for any completed API
- Connect AI agents — Point any MCP-compatible agent at
POST /mcpand it gets all your APIs as tools automatically
How it works
Authentication
All API requests require anX-API-Key header. See the Authentication guide to get your key.
Base URL
All API requests should be made to:For AI agents
Parse exposes a hosted MCP server atPOST /mcp. Any MCP-compatible client (Claude Code, Cursor, etc.) can connect with your API key and immediately get all your APIs as callable tools — no configuration needed.
You can also point your agent at https://parse.bot/llms.txt for a machine-readable overview of the API.