> ## Documentation Index
> Fetch the complete documentation index at: https://docs.nocnoc/llms.txt
> Use this file to discover all available pages before exploring further.

# Get products

> Returns all your published products. Supports filtering by date and pagination.

<Note>Requests go to the live environment — all actions are real.</Note>

## Authorization

<ParamField header="X-Api-Key" type="string" required>
  Your seller API key. Provided by your nocnoc account manager.
</ParamField>

## Query parameters

<ParamField query="updatedAtFrom" type="string">
  Filter products updated from this date. Format: `yyyy-MM-dd'T'HH:mm:ss.SS'Z'`
</ParamField>

<ParamField query="updatedAtTo" type="string">
  Filter products updated up to this date. Format: `yyyy-MM-dd'T'HH:mm:ss.SS'Z'`
</ParamField>

<ParamField query="page" type="integer">
  Page number for pagination.
</ParamField>

<ParamField query="size" type="integer">
  Number of results per page.
</ParamField>

## Returns

A paginated list of your published products, including SKU, title, price, stock, dimensions, images, and attributes.

## Example request

```bash theme={null}
curl https://live.nocnocstore.com/api/v2/products?page=1&size=10 \
  -H "X-Api-Key: YOUR_SELLER_KEY"
```

<ResponseExample>
  ```json 200 theme={null}
  {
    "products": [
      {
        "sku": "TEST1",
        "created_at": "2023-06-21 18:35:14",
        "updated_at": "2023-06-23 18:35:14",
        "international_ids": {
          "asin": "BTEST1",
          "gtin": ["123123TEST1"]
        },
        "brand": "MyBrand",
        "available_quantity": 100,
        "price": 19.99,
        "currency_code": "USD",
        "status": "SUCCESS",
        "package_dimensions": {
          "size": {
            "unit": "inches",
            "width": 5.0,
            "height": 5.0,
            "length": 3.0
          },
          "weight": {
            "value": 1.5,
            "unit": "kg"
          }
        },
        "product_dimensions": {
          "size": {
            "unit": "inches",
            "width": 20.0,
            "height": 10.0,
            "length": 5.0
          },
          "weight": {
            "value": 2.0,
            "unit": "kg"
          }
        },
        "images": [
          { "source_url": "https://example.com/image.jpg" }
        ],
        "title": "Product Title",
        "description_language": "en",
        "description": "Product description",
        "description_html": "<p>Product description in HTML</p>",
        "attributes": [
          { "type": "COLOR", "value": "Red" },
          { "type": "SIZE", "value": "Large" }
        ]
      }
    ]
  }
  ```

  ```json 400 theme={null}
  {
    "code": 400,
    "message": "Invalid query parameter format."
  }
  ```

  ```json 401 theme={null}
  {
    "code": 401,
    "message": "Unauthorized"
  }
  ```
</ResponseExample>
