Skip to main content
DELETE
/
fetch
Fetch a URL (DELETE)
curl --request DELETE \
  --url https://scraping-api.55-tech.com/fetch \
  --header 'X-API-Key: <api-key>'
{
  "meta": {
    "status": 123,
    "final_url": "<string>",
    "http_version": "<string>",
    "elapsed_ms": 123,
    "blocked": true,
    "headers": {},
    "agent": {
      "id": "<string>"
    },
    "bytes": 123
  },
  "raw": "<string>",
  "raw_json": "<unknown>"
}

Authorizations

X-API-Key
string
header
required

API key passed in the X-API-Key header.

Headers

X-Target-URL
string

Target URL (no encoding needed). Recommended for URLs with query parameters.

X-Geo
string

Target countries as comma-separated ISO codes (e.g. US,DE,AT). Aliases: X-Geo-CC, X-CC, X-Country, X-Geo-Strict.

X-Agent
string

Route through specific agent(s) by slug (e.g. de1) or comma-separated list for random pick (e.g. de1,at5,us3).

X-Timeout
string

Override request timeout in seconds (default: 30).

Response

Proxied response from origin.

meta
object
raw
string | null

Response body as text (when not JSON).

raw_json
any | null

Parsed JSON body (when response is valid JSON, otherwise null).