Skip to main content
GET
/
products
/
{id}
Retrieve a product
curl --request GET \
  --url https://api.sellfern.com/products/{id} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "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"
  },
  "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.

Path Parameters

id
integer
required

Product ID.

Required range: x >= 1

Response

Product returned successfully.

success
boolean
required
Example:

true

data
object
required
meta
object