Skip to main content
GET
/
retailers
/
api
/
v1
/
organizations
/
{organization_id}
/
online-offers
List online offers
curl --request GET \
  --url https://www.closient.com/retailers/api/v1/organizations/{organization_id}/online-offers \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "id": "<string>",
      "product_id": "<string>",
      "online_store_id": "<string>",
      "metadata": {},
      "organization_id": "<string>",
      "sku": "",
      "url": "",
      "price": {
        "amount": "5.99",
        "currency": "USD"
      },
      "status": "active",
      "is_verified": false,
      "source": "manual",
      "fulfillment_type": "standard",
      "stock_level": "unknown",
      "delivery_countries": [
        "<string>"
      ],
      "shipping_cost": "<string>",
      "lead_time_days": 1,
      "min_order_quantity": 1
    }
  ],
  "pagination": {
    "page": 2,
    "page_size": 2,
    "total_count": 1,
    "total_pages": 2,
    "has_next": true,
    "has_previous": true
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.closient.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-API-Key
string
header
required

Path Parameters

organization_id
string<shortuuid>
required

UUID of the organization that owns the offers.

Required string length: 22
Pattern: ^[23456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwxyz]{22}$

Query Parameters

page
integer
default:1

Page number (1-indexed).

Required range: x >= 1
page_size
integer
default:25

Number of items per page (max 100).

Required range: 1 <= x <= 100

Response

OK

data
OnlineOfferOut · object[]
required

Items on the current page, each conforming to the endpoint's item schema. Empty when the result set is empty or page is past the end.

pagination
PaginationMeta · object
required

Pagination envelope describing position within the full result set.

Example:
{
"has_next": true,
"has_previous": false,
"page": 1,
"page_size": 25,
"total_count": 342,
"total_pages": 14
}