Skip to main content
GET
/
ramp
/
customer
/
{customer_id}
/
orders
Get customer orders
curl --request GET \
  --url https://api.etherfuse.com/ramp/customer/{customer_id}/orders \
  --header 'Authorization: <api-key>'
{
  "items": [],
  "totalItems": 0,
  "pageSize": 10,
  "pageNumber": 0,
  "totalPages": 0
}

Documentation Index

Fetch the complete documentation index at: https://docs.etherfuse.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key for authentication. Pass the key directly (e.g., Authorization: your-api-key). Do not use a Bearer prefix.

Path Parameters

customer_id
string<uuid>
required

ID of the customer

Response

Orders retrieved successfully

items
object[]

Array of items in the current page

totalItems
integer

Total number of items

pageSize
integer

Number of items per page

pageNumber
integer

Current page number

totalPages
integer

Total number of pages