Build with Parallel
Get started with Parallel’s Web Tools and Web Agents
Execute your first API call in minutes
Copy
Ask AI
curl https://api.parallel.ai/v1beta/search \
-H "Content-Type: application/json" \
-H "x-api-key: $PARALLEL_API_KEY" \
-H "parallel-beta: search-extract-2025-10-10" \
-d '{
"objective": "Find latest information about Parallel Web Systems. Focus on new product releases, benchmarks, or company announcements.",
"search_queries": [
"Parallel Web Systems products",
"Parallel Web Systems announcements"
],
"max_results": 10,
"excerpts": {
"max_chars_per_result": 10000
}
}'
Copy
Ask AI
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"
}'
Copy
Ask AI
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
}'
Copy
Ask AI
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
}'
Copy
Ask AI
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
}
}
}
}'