Skip to content

Meow API (1.0.0)

Overview

The Meow API provides comprehensive financial services and billing capabilities for businesses.

Core Features

  • 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

Billing API

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

Getting Started

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.

Download OpenAPI description
Languages
Servers
Mock server
https://docs.meow.com/_mock/meow_api/
Meow API Production
https://api.meow.com/v1/
Meow API Sandbox
https://api.sandbox.meow.com/v1/

API Keys

Retrieve metadata about API keys and their accessible entities

Operations

Contacts

Manage USDC contacts for cryptocurrency transfers

Operations

Accounts

Access and manage financial accounts

Operations

Transactions

View account transaction history and details

Operations

Balances

Check account balances and available funds

Operations

Payment Networks

Manage payment networks and routing information

Operations

Transfers

Initiate and manage USDC transfers

Operations

Routing Numbers

Validate routing numbers and get bank information

Operations

Products

Manage products and pricing for invoicing

Operations

Customers

Manage billing customers and their information

Operations

Invoices

Create and manage invoices

Operations

Get Invoice

Request

Gets an invoice by ID.

Security
apiKeyAuth
Path
invoice_idstring(uuid)(Invoice Id)required
Headers
x-entity-idstring(uuid)

Optional entity ID for scoped access to entity-specific data

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'

Responses

Successful Response

Bodyapplication/json
idstring(uuid)(Id)required
nameName (string) or Name (null)(Name)
Any of:
string(Name)
customer_idstring(uuid)(Customer Id)required
line_item_idsArray of strings(uuid)(Line Item Ids)required
invoice_dateDateString (string) or nullrequired
Any of:

ISO 8601 full-date in format 'YYYY-MM-DD' according to IETF RFC3339

string DateString Recursive
due_dateDateString (string) or nullrequired
Any of:

ISO 8601 full-date in format 'YYYY-MM-DD' according to IETF RFC3339

string DateString Recursive
payment_method_typesArray of strings(Payment Method Types)required
Items Enum"BANK_TRANSFER""CARD""ACH_DIRECT_DEBIT""INTERNATIONAL_WIRE""USDC_ETHEREUM""USDC_SOLANA""USDC_BASE""USDT_ETHEREUM"
send_email_on_creationboolean(Send Email On Creation)required
additional_recipient_emailsArray of strings(Additional Recipient Emails)required
noteNote (string) or Note (null)(Note)
Any of:
string(Note)
collection_account_idstring(uuid)(Collection Account Id)required
created_atstring(date-time)(Timestamp)required
updated_atTimestamp (string) or null
Any of:

ISO 8601 date-time in format 'YYYY-MM-DDThh:mm:ss.nnn[Z|[+|-]hh:mm]' according to IETF RFC3339

string Timestamp Recursive
Response
application/json
{ "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" }

Download Invoice PDF

Request

Downloads an invoice as a PDF file.

Security
apiKeyAuth
Path
invoice_idstring(uuid)(Invoice Id)required

The unique identifier of the invoice to download

Headers
x-entity-idstring(uuid)

Optional entity ID for scoped access to entity-specific data

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'

Responses

The invoice as a PDF file. Returns binary data (raw bytes).

Headers
Content-Dispositionstring

Attachment header that triggers file download with the invoice filename

Example: "attachment; filename=\"Invoice - INV-2024-001.pdf\""
Bodyapplication/pdf
string(binary)
Response
application/pdf
Binary PDF content

Line Items

Manage invoice line items

Operations

Payment Methods

Configure available payment methods

Operations

Collection Accounts

Manage accounts for payment collection

Operations