Skip to main content
GET
/
v1
/
payins
List Payins
curl --request GET \
  --url https://stablecoin-api.sandbox.getmeru.com/v1/payins
{
  "data": [],
  "meta": { "page": 1, "pageSize": 20, "total": 0, "totalPages": 1 }
}

Query Params

page
number
Page number (default 1).
pageSize
number
Page size (default 20, max 100).
startDate
string
Inclusive lower bound on createdAt (ISO 8601). Optional.
endDate
string
Inclusive upper bound on createdAt (ISO 8601). Optional.
endDate is a timestamp, not a calendar day: 2024-01-31 resolves to 2024-01-31T00:00:00Z and excludes that day — to include the full day, pass 2024-01-31T23:59:59Z. When both dates are provided, startDate must be before or equal to endDate, otherwise the API responds with 400 Bad Request.

Response

{
  "data": [],
  "meta": { "page": 1, "pageSize": 20, "total": 0, "totalPages": 1 }
}