Skip to main content
GET
/
products
/
paging
List products with pagination
curl --request GET \
  --url https://api.sellfern.com/products/paging \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "data": [
      {
        "id": 1001,
        "sku": "TSHIRT-BLACK-M",
        "spu": "TSHIRT",
        "title": "Classic T-Shirt - Black / M",
        "description": "<string>",
        "price": 123,
        "design_link": "<string>",
        "tags": [
          "<string>"
        ],
        "images": [
          "<string>"
        ],
        "videos": [
          "<string>"
        ],
        "stores": [
          "<string>"
        ],
        "platforms": [
          "<string>"
        ],
        "labels": [
          "<string>"
        ],
        "sizes": [
          "<string>"
        ],
        "organization_id": 123,
        "created_at": "2023-11-07T05:31:56Z",
        "updated_at": "2023-11-07T05:31:56Z"
      }
    ],
    "total": 125,
    "page": 1,
    "limit": 50,
    "totalPages": 3
  },
  "meta": {
    "request_id": "<string>"
  }
}

Documentation Index

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

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

Authorizations

x-api-key
string
header
required

Sellfern public API key scoped to the authenticated organization. Do not use user JWTs for public integrations.

Query Parameters

Search by SKU or title.

excludeAuto
boolean
default:true

Exclude automatically generated SKUs.

Only include products missing a design link.

stores
string

Store filter accepted by the backend.

page
integer
default:1

Page number, 1-indexed.

Required range: x >= 1
limit
integer
default:50

Number of results per page.

Required range: 1 <= x <= 100
sortField
string
default:id

Product field to sort by.

sortOrder
enum<string>
default:DESC

Sort direction.

Available options:
asc,
desc,
ASC,
DESC

Response

Paginated products returned successfully.

success
boolean
required
Example:

true

data
object
required
meta
object