Skip to main content

Build with Parallel

Get started with Parallel’s Web Tools and Web Agents

Execute your first API call in minutes

curl -X POST "https://api.parallel.ai/v1/tasks/runs" \
  -H "x-api-key: $PARALLEL_API_KEY" \
  -H 'Content-Type: application/json' \
  --data-raw '{
  "input": "Create a research report on the most recent academic research advancements in web search for LLMs.",
  "processor": "ultra"
}'
curl -N https://api.parallel.ai/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $PARALLEL_API_KEY" \
  -d '{
    "model": "speed",
    "messages": [
      { "role": "user", "content": "What does Parallel Web Systems do?" }
    ],
    "stream": false
  }'
curl https://api.parallel.ai/v1beta/extract \
  -H "Content-Type: application/json" \
  -H "x-api-key: $PARALLEL_API_KEY" \
  -H "parallel-beta: search-extract-2025-10-10" \
  -d '{
    "urls": ["https://parallel.ai/blog/search-api-benchmark"],
    "objective": "How does Parallel perform on search benchmarks?",
    "excerpts": true,
    "full_content": false
  }'
curl -X POST "https://api.parallel.ai/v1/tasks/runs" \
  -H "x-api-key: $PARALLEL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "processor": "base",
    "input": "Extract key company information including recent product announcements, CEO profile, and funding details. Company name: Parallel Web Systems. Company website: parallel.ai",
    "task_spec": {
      "output_schema": {
        "type": "json",
        "json_schema": {
          "type": "object",
          "properties": {
            "product_announcements": {
              "type": "string",
              "description": "Most recent product announcements."
            },
            "ceo_profile": {
              "type": "string",
              "description": "Summary of the CEO's background and profile."
            },
            "funding_summary": {
              "type": "string",
              "description": "Summary of the company's funding history and current funding status"
            }
          },
          "required": ["product_announcements", "ceo_profile", "funding_summary"],
          "additionalProperties": false
        }
      }
    }
  }'
curl -X POST https://api.parallel.ai/v1beta/findall/runs \
  -H "x-api-key: $PARALLEL_API_KEY" \
  -H "Content-Type: application/json" \
  -H "parallel-beta: findall-2025-09-15" \
  -d '{
    "objective": "Find all startups in SF",
    "entity_type": "startups",
    "match_conditions": [
      {
        "name": "san_francisco_location_check",
        "description": "Startup must be located in San Francisco."
      }
    ],
    "generator": "core",
    "match_limit": 100
  }'