Skip to main content
GET
/
stores
List stores
curl --request GET \
  --url https://api.sellfern.com/stores \
  --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.

Response

Stores returned successfully.

success
boolean
required
Example:

true

data
object[]
required
meta
object