Skip to main content
GET
/
receivables
List receivables
curl --request GET \
  --url https://api.allcovered.xyz/v1/receivables \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "invoice_number": "<string>",
      "customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "customer_name": "<string>",
      "customer_email": "[email protected]",
      "amount": 123,
      "currency": "USD",
      "due_date": "2023-12-25",
      "status": "draft",
      "notes": "<string>",
      "sent_at": "2023-11-07T05:31:56Z",
      "paid_at": "2023-11-07T05:31:56Z",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z"
    }
  ],
  "meta": {
    "page": 1,
    "limit": 50,
    "total": 100,
    "has_more": true
  }
}
Retrieve a paginated list of receivables with optional filters.

Authorizations

Authorization
string
header
required

API key from StableBase dashboard

Query Parameters

page
integer
default:1

Page number (1-indexed)

Required range: x >= 1
limit
integer
default:50

Number of items per page

Required range: 1 <= x <= 100
status
string

Filter by status

from
string<date>

Filter by start date (ISO 8601)

to
string<date>

Filter by end date (ISO 8601)

Search term

customer_id
string<uuid>

Filter by customer ID

Response

List of receivables

data
object[]
required
meta
object
required