POST
/
api
/
v1
/
extract
curl --request POST \
  --url https://api.agenttoolkit.ai/api/v1/extract \
  --header 'Content-Type: application/json' \
  --data '{
  "urls": [
    "<string>"
  ],
  "include_images": false,
  "include_links": false,
  "extract_depth": "basic"
}'
{
  "results": [
    {
      "url": "<string>",
      "raw_content": "<string>",
      "images": [
        "<string>"
      ],
      "links": [
        "<string>"
      ],
      "cache_hit": false
    }
  ],
  "failed_results": [
    {
      "url": "<string>",
      "error": "<string>"
    }
  ],
  "response_time": 123
}

Body

application/json

Schema for extract request.

Response

200
application/json

Successful Response

Schema for extract response.