Browsable Browsable Docs

Vinted item

Fetch a Vinted item page and return normalized item details plus similar items from the same page.

POST /v1/vinted/item

Request Parameters

Name In Type Required Description
domain body string No Optional Vinted domain/origin (e.g. vinted.de, www.vinted.fr, or https://www.vinted.co.uk). Used when item_id is provided or to override the default UK domain.
item_id body string No Numeric Vinted item ID. When used without item_url, the scraper defaults to vinted.co.uk unless domain is provided.
item_url body string No Vinted item URL (e.g. https://www.vinted.co.uk/items/8289132552-foo).

Response Structure

Async kickoff response

Polled run result response

Sync response

Declared output schema

Code Examples

Async + polling

RUN=$(curl -s -X POST "https://api.browsable.app/v1/vinted/item" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"domain":"vinted.co.uk","item_id":"id-1","item_url":"https://example.com/item-1"}')
RUN_ID=$(echo "$RUN" | jq -r '.run_id')
while true; do
RESULT=$(curl -s -H "Authorization: Bearer YOUR_API_KEY" "https://api.browsable.app/v1/runs/$RUN_ID")
STATUS=$(echo "$RESULT" | jq -r '.run_status')
if [ "$STATUS" = "succeeded" ] || [ "$STATUS" = "failed" ]; then
echo "$RESULT"
break
fi
sleep 2
done

Sync

curl -X POST "https://api.browsable.app/v1/vinted/item" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"domain":"vinted.co.uk","item_id":"id-1","item_url":"https://example.com/item-1","_run":{"async":false}}'