Skip to main content
GET
List Bills

Authorizations

x-api-key
string
header
required

Your Meow API key, sent in the x-api-key header for authentication.

Headers

x-entity-id
string<uuid>

Optional entity_id to scope requests to a specific entity.

Query Parameters

statuses
enum<string>[] | null

Filter to one or more bill statuses, as a list. Omit to return every status.

Available options:
CANCELED,
DRAFT_PROCESSING,
DRAFT,
PAYMENT_INFO_NEEDED,
PENDING,
APPROVED,
REJECTED,
SCHEDULED,
PAYMENT_INITIATED,
PAYMENT_DELIVERED,
PAYMENT_FAILED,
PAYMENT_CANCELED
contact_id
string<uuid>[] | null

Filter to one or more vendor contacts, as a list. Use list_contacts to find contact IDs.

amount_min

Only return bills with a total at or above this amount.

amount_max

Only return bills with a total at or below this amount.

bill_date_from
string<date> | null

Only return bills dated on or after this date.

bill_date_to
string<date> | null

Only return bills dated on or before this date.

due_date_from
string<date> | null

Only return bills due on or after this date.

due_date_to
string<date> | null

Only return bills due on or before this date.

search
string | null

Free-text search over vendor name and bill number.

sort_by
enum<string> | null

Field to sort by. Defaults to the bill's due date.

Available options:
VENDOR_NAME,
STATUS,
AMOUNT,
PAYMENT_DATE,
BILL_DATE,
CREATED_TIME,
BILL_DUE_DATE,
INVOICE_NUMBER,
DESCRIPTION,
PAYMENT_TYPE,
CATEGORY
sort_descending
boolean
default:false

Sort descending instead of ascending.

limit
integer
default:10

Maximum number of results to return.

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 | null

Pagination metadata.