Skip to main content
GET
/
stores
/
{id}
/
aliases
List store aliases
curl --request GET \
  --url https://api.sellfern.com/stores/{id}/aliases \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": [
    {
      "id": 7,
      "organization_id": 123,
      "store_id": 1,
      "alias_name": "My Etsy Shop",
      "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

Store ID.

Required range: x >= 1

Response

Store aliases returned successfully.

success
boolean
required
Example:

true

data
object[]
required
meta
object