Skip to main content
GET
/
orders
/
{id}
Retrieve an order
curl --request GET \
  --url https://api.sellfern.com/orders/{id} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "data": {
    "id": 1234567890,
    "storeName": "My Etsy Store",
    "date": "2023-11-07T05:31:56Z",
    "currency": "USD",
    "totalAmount": 123,
    "subtotal": 123,
    "tax": 123,
    "shippingCost": 123,
    "discount": 123,
    "customerName": "<string>",
    "customerAddress": "<string>",
    "shipAddress1": "<string>",
    "shipAddress2": "<string>",
    "shipCity": "<string>",
    "shipState": "<string>",
    "shipZipcode": "<string>",
    "shipCountry": "<string>",
    "isGift": true,
    "isRefunded": true,
    "isCaseClosed": true,
    "isLost": true,
    "requiresAudit": true,
    "createdAt": "2023-11-07T05:31:56Z",
    "updatedAt": "2023-11-07T05:31:56Z",
    "items": [
      {
        "id": "987654321",
        "orderId": "1234567890",
        "customOrderId": "<string>",
        "name": "<string>",
        "sku": "<string>",
        "customSku": "<string>",
        "spu": "<string>",
        "quantity": 1,
        "price": 123,
        "status": "In Production",
        "assignedSupplier": "<string>",
        "subSupplier": "<string>",
        "material": "<string>",
        "materialId": "<string>",
        "designUrl": "<string>",
        "trackingCode": "<string>",
        "carrier": "<string>",
        "style": "<string>",
        "type": "<string>",
        "size": "<string>",
        "color": "<string>",
        "variations": "<string>",
        "personalization": "<string>",
        "comment": "<string>",
        "idService": "<string>",
        "phone": "<string>",
        "orderDate": "<string>",
        "storeName": "<string>",
        "isGift": true,
        "customerName": "<string>",
        "customerAddress": "<string>",
        "shipName": "<string>",
        "shipAddress1": "<string>",
        "shipAddress2": "<string>",
        "shipCity": "<string>",
        "shipState": "<string>",
        "shipZipcode": "<string>",
        "shipCountry": "<string>",
        "vatIossNumber": "<string>"
      }
    ]
  },
  "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

Order ID.

Required range: x >= 1

Response

Order returned successfully.

success
boolean
required
Example:

true

data
object
required
meta
object