Skip to main content
GET
/
stores
/
{id}
/
statistics
Retrieve store statistics
curl --request GET \
  --url https://api.sellfern.com/stores/{id}/statistics \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "total_orders": 42,
    "active_products": 18
  },
  "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 statistics returned successfully.

success
boolean
required
Example:

true

data
object
required
meta
object