Skip to main content
GET
/
bills
List all bills for the entity
curl --request GET \
  --url https://api.meow.com/v1/bills \
  --header 'x-api-key: <api-key>'
{
  "bills": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "status": "CANCELED",
      "vendor_name": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "invoice_number": "<string>",
      "description": "<string>",
      "memo": "<string>",
      "bill_date": "2023-12-25",
      "bill_due_date": "2023-12-25",
      "bill_total": "<string>",
      "currency": "<string>",
      "payment_type": "ACH",
      "contact_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "paid_at": "2023-11-07T05:31:56Z",
      "scheduled_at": "2023-11-07T05:31:56Z"
    }
  ],
  "page": {
    "nextOffset": "qwer123454q2f"
  }
}

Authorizations

x-api-key
string
header
required

Your Meow API key for authentication

Headers

x-entity-id
string<uuid>

Optional entity ID for scoped access to entity-specific data

Query Parameters

statuses
enum<string>[] | null
Available options:
CANCELED,
DRAFT_PROCESSING,
DRAFT,
PAYMENT_INFO_NEEDED,
PENDING,
APPROVED,
REJECTED,
SCHEDULED,
PAYMENT_INITIATED,
PAYMENT_DELIVERED,
PAYMENT_FAILED,
PAYMENT_CANCELED
limit
integer
default:10
Required range: 1 <= x <= 100
offset
string | null

Opaque offset identifier for pagination. Use the nextOffset from a previous response.

Maximum string length: 100

Response

Successful Response

bills
BillSummaryResponse · object[]
required

List of bills

page
PageMetadata · object

Pagination metadata