GET /sellers/profile 1 credit

Amazon Seller Profile API

Storefront profile for a merchant id: display name, feedback rating, positive percentage, lifetime rating count, business details and logo.

Try it

You are not signed in, so this runs against sample data and costs nothing. Create a free account to run it against your own key.
Returns sample data — no account needed.
Send a request to see the response.

Query parameters

NameTypeDefaultDescription
seller_id
required
string Amazon merchant token.
marketplace string US Two-letter marketplace code (US, UK, DE, FR, IT, ES, CA, JP, IN, AU, …).
zip string Delivery postcode. Without one, many listings report “cannot be shipped to your location” and come back with no price or images. Always send it for price-accurate data.

Request

curl -sS "https://amazoncrawler.com/v1/sellers/profile?seller_id=AZQLP91T8BP8E&marketplace=US&zip=10001" \
  -H "x-api-key: YOUR_API_KEY"

Response

200 OK application/json
{
  "url": "https://www.amazon.com/sp?seller=AZQLP91T8BP8E",
  "logo": "https://images-na.ssl-images-amazon.com/images/G/01/amazonui/loading/loading-1x.gif",
  "name": "Poseitun",
  "about": "Poseitun is committed to providing each customer with the highest standard of customer service.",
  "rating": 4.0,
  "seller_id": "AZQLP91T8BP8E",
  "positive_pct": 81,
  "ratings_count": 232,
  "business_details": {}
}

Errors

Beyond the shared error codes, this endpoint returns 422 when a parameter fails validation — the detail array names the field.

422 Unprocessable Entity
{
  "detail": [
    {
      "loc": ["query", "seller_id"],
      "msg": "Field required",
      "type": "missing",
      "input": null
    }
  ]
}

Related endpoints