Skip to main content
GET
/
stores
/
{id}
Retrieve a store
curl --request GET \
  --url https://api.sellfern.com/stores/{id} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "id": 1,
    "name": "My Etsy Store",
    "code": "etsy-main",
    "platform": "Etsy",
    "currency": "USD",
    "type": "retail",
    "is_active": true,
    "organization_id": 123
  },
  "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

Store ID.

Required range: x >= 1

Response

Store returned successfully.

success
boolean
required
Example:

true

data
object
required
meta
object