Retrieve metadata about API keys and their accessible entities
Meow API (1.0.0)
The Meow API provides comprehensive financial services and billing capabilities for businesses.
- Financial Data Access: Securely access account information, transactions, balances, and payment networks
- USDC Operations: Create and manage cryptocurrency contacts, initiate USDC transfers across multiple blockchain networks
The Billing API enables businesses to streamline their invoicing and payment collection:
- Product Management: Create and manage products with customizable pricing
- Customer Management: Maintain invoicing customers with billing addresses
- Invoice Creation: Generate invoices with line items, discounts, and custom notes
- Flexible Payment Options: Accept payments via bank transfer, ACH, cards, international wires, and USDC
- Collection Accounts: Configure accounts for automated payment collection
Authenticate using your API key in the request header: x-api-key: your-api-key
For multi-entity access, you can optionally include the x-entity-id header to scope API requests to a specific entity. Use the /api-keys/accessible-entities endpoint to list all entities accessible by your API key.
Quantity of the product
Price of the product, defaults to the product's default price
Price of the product, defaults to the product's default price
Description of the product, will default to the product's description if not provided
Discount percentage of the product
Discount percentage of the product
Payment method types to enable on the invoice. BANK_TRANSFER is always enabled.
Recurring schedule for the invoice. Enter a valid RFC 2445 RRULE string. If you need help creating one, use https://icalendar.org/rrule-tool.html
If true, sends an email to the contact (and any additional recipients) on the invoice_date.
Additional recipient emails to send the invoice and any reminders to
Note to include on the invoice
Name of the invoice
Account ID that payments on this invoice will be deposited to
- Mock serverhttps://docs.meow.com/_mock/meow_api/billing/invoices
- Meow API Productionhttps://api.meow.com/v1/billing/invoices
- Meow API Sandboxhttps://api.sandbox.meow.com/v1/billing/invoices
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://docs.meow.com/_mock/meow_api/billing/invoices \
-H 'Content-Type: application/json' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-entity-id: 497f6eca-6276-4993-bfeb-53cbbbba6f08' \
-d '{
"customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e",
"line_items": [
{
"product_id": "0d012afa-f885-4e65-aeca-37e27701e2d1",
"quantity": 1,
"price": 0.01,
"description": "string",
"discount_percentage": 100,
"discount_description": "string"
}
],
"invoice_date": "2019-08-24",
"due_date": "2019-08-24",
"payment_method_types": [
"BANK_TRANSFER"
],
"recurring_schedule": "string",
"send_email_on_creation": true,
"additional_recipient_emails": [
"user@example.com"
],
"note": "string",
"name": "string",
"collection_account_id": "d84ddb2f-39e1-4c6d-be0c-2221e75ce546",
"show_contact_address": false
}'Successful Response
ISO 8601 full-date in format 'YYYY-MM-DD' according to IETF RFC3339
ISO 8601 full-date in format 'YYYY-MM-DD' according to IETF RFC3339
ISO 8601 date-time in format 'YYYY-MM-DDThh:mm:ss.nnn[Z|[+|-]hh:mm]' according to IETF RFC3339
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e", "line_item_ids": [ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ], "invoice_date": "2019-08-24", "due_date": "2019-08-24", "payment_method_types": [ "BANK_TRANSFER" ], "send_email_on_creation": true, "additional_recipient_emails": [ "string" ], "note": "string", "collection_account_id": "d84ddb2f-39e1-4c6d-be0c-2221e75ce546", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock serverhttps://docs.meow.com/_mock/meow_api/billing/invoices/{invoice_id}
- Meow API Productionhttps://api.meow.com/v1/billing/invoices/{invoice_id}
- Meow API Sandboxhttps://api.sandbox.meow.com/v1/billing/invoices/{invoice_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.meow.com/_mock/meow_api/billing/invoices/{invoice_id}' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-entity-id: 497f6eca-6276-4993-bfeb-53cbbbba6f08'Successful Response
ISO 8601 full-date in format 'YYYY-MM-DD' according to IETF RFC3339
ISO 8601 full-date in format 'YYYY-MM-DD' according to IETF RFC3339
ISO 8601 date-time in format 'YYYY-MM-DDThh:mm:ss.nnn[Z|[+|-]hh:mm]' according to IETF RFC3339
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "customer_id": "160c0c4b-9966-4dc1-a916-8407eb10d74e", "line_item_ids": [ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ], "invoice_date": "2019-08-24", "due_date": "2019-08-24", "payment_method_types": [ "BANK_TRANSFER" ], "send_email_on_creation": true, "additional_recipient_emails": [ "string" ], "note": "string", "collection_account_id": "d84ddb2f-39e1-4c6d-be0c-2221e75ce546", "created_at": "2019-08-24T14:15:22Z", "updated_at": "2019-08-24T14:15:22Z" }
- Mock serverhttps://docs.meow.com/_mock/meow_api/billing/invoices/{invoice_id}/download
- Meow API Productionhttps://api.meow.com/v1/billing/invoices/{invoice_id}/download
- Meow API Sandboxhttps://api.sandbox.meow.com/v1/billing/invoices/{invoice_id}/download
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.meow.com/_mock/meow_api/billing/invoices/{invoice_id}/download' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-entity-id: 497f6eca-6276-4993-bfeb-53cbbbba6f08'Binary PDF content