POST
/
request
curl --request POST \
  --url https://api.brightdata.com/request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "zone": "<string>",
  "url": "<string>",
  "format": "raw",
  "method": "GET",
  "country": "<string>",
  "city": "<string>",
  "zip": "<string>",
  "ASN": "<string>",
  "carrier": "<string>",
  "os": "<string>",
  "dns": "local",
  "session": "<string>",
  "ip": "<string>",
  "gip": "<string>",
  "c_tag": "<string>",
  "direct": true
}'
"OK"
See instruction on how to create API key: API key creation

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

OK

The response is of type string.

Example:

"OK"