Skip to main content
POST
/
v1
/
web
/
scrape
Scrape specific elements from a web page
curl --request POST \
  --url https://api.weblinq.dev/v1/web/scrape \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "url": "<string>",
  "elements": [
    {
      "selector": "<string>",
      "attributes": [
        "<string>"
      ]
    }
  ],
  "waitTime": 0,
  "headers": {}
}'
{
  "success": true,
  "data": {
    "elements": [
      {
        "selector": "<string>",
        "data": {}
      }
    ],
    "metadata": {
      "url": "<string>",
      "timestamp": "<string>",
      "elementsFound": 123
    }
  },
  "creditsCost": 123,
  "requestId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "timestamp": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Enter your API token or session token

Body

application/json

Element scraping parameters

url
string<uri>
required
elements
object[]
required
waitTime
integer
default:0
Required range: 0 <= x <= 5000
headers
object

Response

Elements scraped successfully

success
boolean
required
data
object
required
requestId
string<uuid>
required

Unique request identifier for tracing

timestamp
string<date-time>
required

ISO timestamp when the response was generated

creditsCost
number

Credits consumed by this operation

I