SmakeSmake API Docs
EndpointsCustomers

Show a customer

GET
/customers/{id}

Returns the resource for a customer with id = x.

AuthorizationbearerAuth

Authorization

bearerAuth
AuthorizationBearer <token>

API token as bearer token — you receive a test and a live token, there is no switch between them. See Setup → Authentication and Setup → Test mode.

In: header

Path Parameters

id*integer

The ID of the resource.

Header Parameters

Accept*"application/json"

The API only responds with JSON — this header is mandatory on every request (see Setup → Headers).

Default"application/json"

Value in

  • "application/json"

Response Body

application/json

application/json

application/json

Request example
curl -X GET "https://example.com/customers/0" \  -H "Accept: application/json"
{  "id": 14,  "first_name": "Delta",  "last_name": "Spencer",  "is_test": 0,  "email": "[email protected]",  "external_identifier": null,  "created_at": "2026-03-02T08:31:06+00:00",  "updated_at": "2026-03-02T08:31:06+00:00"}