Relay docs
API ReferenceStores

List stores

Lists the workspace's stores, newest first. Requires the `contacts:read` scope.

GET
/v1/public/stores

Authorization

bearerAuth
AuthorizationBearer <token>

Workspace API key, e.g. rl_live_….

In: header

Query Parameters

limit?integer
Rangevalue <= 200
Default50
cursor?string

Offset cursor from next_cursor.

search?string

Filter by name or website substring.

Response Body

application/json

application/json

curl -X GET "https://example.com/v1/public/stores"
{  "data": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "name": "string",      "website": "string",      "industry": "string",      "notes": "string",      "externalId": "string",      "createdAt": "2019-08-24T14:15:22Z",      "updatedAt": "2019-08-24T14:15:22Z"    }  ],  "has_more": true,  "next_cursor": "string"}
{  "error": "string"}