mayarin
GET
/x402/payables

Invoices with an outstanding balance and fixed-amount payment links, across every merchant, newest first — what an agent reads before it has met anyone. Each entry carries the price a 402 would actually quote, so a reader deciding whether to pay need not ask each one.

Draft, void and paid-in-full invoices, disabled and expired links, and open-amount links never appear and never quote, listed or not.

Query Parameters

limit?|

Page size. Defaults to 50, capped at 100.

cursor?string

Opaque cursor from the previous page's nextCursor.

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/x402/payables"
{  "payables": [    {      "kind": "invoice",      "id": "string",      "createdAt": "string",      "merchant": "string",      "title": "string",      "amount": {        "amount": "string",        "asset": "string",        "formatted": "string",        "display": "string"      },      "url": "string",      "dueAt": "string"    }  ],  "nextCursor": "string"}