GET
/
v3
/
goat
/
products
/
{id}
/
sales
/
daily
curl --request GET \
  --url https://api.kicks.dev/v3/goat/products/{id}/sales/daily \
  --header 'Authorization: <api-key>'
{
  "status": "success",
  "data": [
    {
      "product_id": 1454542,
      "avg_amount": 153.78125,
      "orders": 32,
      "date": "2025-01-25T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 167.9166717529297,
      "orders": 60,
      "date": "2025-01-24T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 152.45652770996094,
      "orders": 92,
      "date": "2025-01-23T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 157.9591827392578,
      "orders": 49,
      "date": "2025-01-22T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 162.46807861328125,
      "orders": 47,
      "date": "2025-01-21T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 160.2708282470703,
      "orders": 48,
      "date": "2025-01-20T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 150.24073791503906,
      "orders": 54,
      "date": "2025-01-19T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 159.39682006835938,
      "orders": 63,
      "date": "2025-01-18T00:00:00Z"
    }
    /* ... */
  ],
  "meta": {
    "page": 1,
    "per_page": 50,
    "total": 31
  }
}

Membership

This endpoint is available in the pro tier.

Path parameters

id
string
required

The GOAT ID of the product. Slug is not supported.

Parameters

limit
number
default:"50"

The number of results to return.

page
number
default:"1"

The page number to return.

{
  "status": "success",
  "data": [
    {
      "product_id": 1454542,
      "avg_amount": 153.78125,
      "orders": 32,
      "date": "2025-01-25T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 167.9166717529297,
      "orders": 60,
      "date": "2025-01-24T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 152.45652770996094,
      "orders": 92,
      "date": "2025-01-23T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 157.9591827392578,
      "orders": 49,
      "date": "2025-01-22T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 162.46807861328125,
      "orders": 47,
      "date": "2025-01-21T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 160.2708282470703,
      "orders": 48,
      "date": "2025-01-20T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 150.24073791503906,
      "orders": 54,
      "date": "2025-01-19T00:00:00Z"
    },
    {
      "product_id": 1454542,
      "avg_amount": 159.39682006835938,
      "orders": 63,
      "date": "2025-01-18T00:00:00Z"
    }
    /* ... */
  ],
  "meta": {
    "page": 1,
    "per_page": 50,
    "total": 31
  }
}