Skip to main content
GET
/
payables
List payables
curl --request GET \
  --url https://api.allcovered.xyz/v1/payables \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "invoice_number": "<string>",
      "vendor_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "vendor_name": "<string>",
      "amount": 123,
      "currency": "USD",
      "due_date": "2023-12-25",
      "status": "pending_review",
      "notes": "<string>",
      "payment_method": "ach",
      "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 payables 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

vendor_id
string<uuid>

Filter by vendor ID

Response

List of payables

data
object[]
required
meta
object
required