Skip to main content
POST
/
api
/
petsplace
/
products
/petsplace/products
curl --request POST \
  --url https://api.anysite.io/api/petsplace/products \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "product": "<string>",
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "@type": "@petsplace_product",
    "sku": "<string>",
    "gtin13": "<string>",
    "alias": "<string>",
    "name": "<string>",
    "description": "<string>",
    "brand": "<string>",
    "image": "<string>",
    "images": [],
    "price": 123,
    "list_price": 123,
    "currency": "<string>",
    "availability": "<string>",
    "availability_text": "<string>",
    "is_in_stock": true,
    "condition": "<string>",
    "rating": 123,
    "best_rating": 123,
    "worst_rating": 123,
    "review_count": 123,
    "category": {
      "name": "<string>",
      "@type": "@petsplace_category_ref",
      "alias": "<string>",
      "url": "<string>"
    },
    "breadcrumbs": [],
    "assortment": "<string>",
    "product_group": "<string>",
    "product_subgroup": "<string>",
    "life_stage": "<string>",
    "health": "<string>",
    "composition": "<string>",
    "analysis": "<string>",
    "feeding_guideline": "<string>",
    "family": "<string>",
    "color": "<string>",
    "fulfillment": [],
    "specifications": [],
    "url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
product
string
required

Pets Place product id, article number (sku), EAN, or a product page URL

Minimum string length: 1
Examples:

"91548"

"40559993"

"8713079320925"

"https://www.petsplace.nl/beaubeau-waterblazer-hondenvachtverzorging-8713079320925-pps"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
string
required
@type
string
default:@petsplace_product
sku
string | null
gtin13
string | null
alias
string | null
name
string | null
description
string | null
brand
string | null
image
string | null
images
string[]
price
number | null
list_price
number | null
currency
string | null
availability
string | null
availability_text
string | null
is_in_stock
boolean | null
condition
string | null
rating
number | null
best_rating
number | null
worst_rating
number | null
review_count
integer | null
category
PetsplaceCategoryRef · object
breadcrumbs
PetsplaceCategoryRef · object[]
assortment
string | null
product_group
string | null
product_subgroup
string | null
life_stage
string | null
health
string | null
composition
string | null
analysis
string | null
feeding_guideline
string | null
family
string | null
color
string | null
fulfillment
string[]
specifications
PetsplaceProductSpec · object[]
url
string | null