1. Get a key
Sign in, create a key from the dashboard, copy the secret once (you won't see it again).
2. Make your first call
POST the product URL to /v1/extract with your key in the x-api-key header.
curl https://api.cartpie.com/v1/extract \
-H "x-api-key: $CARTPIE_KEY" \
-H "content-type: application/json" \
-d '{ "url": "https://www.ikea.com/gb/en/p/billy-bookcase-white-00263850/" }'3. Read the response
Every successful response has data (the product) and meta (billable, cached, timing).
{
"data": {
"title": "BILLY Bookcase, white",
"price": "55.00",
"currency": "GBP",
"availability": "inStock"
},
"meta": { "billable": true, "cached": false, "duration_ms": 412 }
}