Skip to content

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.

Error Responses

Errors return JSON with code, message, and debug_message. The code aligns with FDX where possible; debug_message is for troubleshooting only.

Common error codes:

  • 500: Internal server error
  • 501: Subsystem unavailable
  • 503: Scheduled maintenance
  • 601: Data not found
  • 602: Customer not authorized
  • 701: Account not found
  • 703: Invalid input (including invalid date ranges)
  • 704: Account type not supported
  • 705: Account is closed
  • 801: Transaction not found
Download OpenAPI description
Languages
Servers
Mock server
https://developer.meow.com/_mock/meow_api
Meow API Production
https://api.meow.com/v1
Meow API Sandbox
https://api.sandbox.meow.com/v1

Retrieve metadata about API keys and their accessible entities

Operations

Manage USDC contacts for cryptocurrency transfers

Operations

Access and manage financial accounts

Operations

View account transaction history and details

Operations

Check account balances and available funds

Operations

Manage payment networks and routing information

Operations

Initiate ACH, wire, book, and USDC transfers, and retrieve transfer details

Operations

Validate routing numbers and get bank information

Operations

View and manage bills for vendor payments

Operations

Manage products and pricing for invoicing

Operations

Manage billing customers and their information

Operations

Create and manage invoices

Operations

Manage invoice line items

Operations

List all line items for an invoice

Request

Returns all line items associated with a specific invoice

Security
apiKeyAuth(Required scopes:
billing:invoices:read
)
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://developer.meow.com/_mock/meow_api/billing/invoices/{invoice_id}/line-items' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'x-entity-id: 497f6eca-6276-4993-bfeb-53cbbbba6f08'

Responses

Successful Response

Bodyapplication/jsonArray [
idstring(uuid)(Id)required

The unique identifier for the line item

productobject(Product)required

The product associated with the line item

product.​idstring(uuid)(Id)required

The unique identifier for the product

product.​namestring(Name)required

The name of the product

product.​descriptionDescription (string) or Description (null)(Description)

The description of the product

Any of:

The description of the product

string(Description)
product.​default_pricestring(Default Price)required

The default price of the product

amountstring(Amount)required

The total amount for the line item

quantitystring(Quantity)required

The quantity of the product

pricestring(Price)required

The price per unit of the product

descriptionDescription (string) or Description (null)(Description)

A description of the line item

Any of:

A description of the line item

string(Description)
discountDiscount (string) or Discount (null)(Discount)

The discount applied to the line item

Any of:

The discount applied to the line item

string(Discount)
discount_descriptionDiscount Description (string) or Discount Description (null)(Discount Description)

A description of the discount

Any of:

A description of the discount

string(Discount Description)
created_atstring(date-time)(Timestamp)required

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

]
Response
application/json
[ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "product": {}, "amount": "string", "quantity": "string", "price": "string", "description": "string", "discount": "string", "discount_description": "string", "created_at": "2019-08-24T14:15:22Z" } ]

Get a specific line item for an invoice

Request

Returns a specific line item by ID for a given invoice

Security
apiKeyAuth(Required scopes:
billing:invoices:read
)
Path
invoice_idstring(uuid)(Invoice Id)required
line_item_idstring(uuid)(Line Item Id)required
Headers
x-entity-idstring(uuid)

Optional entity ID for scoped access to entity-specific data

curl -i -X GET \
  'https://developer.meow.com/_mock/meow_api/billing/invoices/{invoice_id}/line-items/{line_item_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

The unique identifier for the line item

productobject(Product)required

The product associated with the line item

product.​idstring(uuid)(Id)required

The unique identifier for the product

product.​namestring(Name)required

The name of the product

product.​descriptionDescription (string) or Description (null)(Description)

The description of the product

Any of:

The description of the product

string(Description)
product.​default_pricestring(Default Price)required

The default price of the product

amountstring(Amount)required

The total amount for the line item

quantitystring(Quantity)required

The quantity of the product

pricestring(Price)required

The price per unit of the product

descriptionDescription (string) or Description (null)(Description)

A description of the line item

Any of:

A description of the line item

string(Description)
discountDiscount (string) or Discount (null)(Discount)

The discount applied to the line item

Any of:

The discount applied to the line item

string(Discount)
discount_descriptionDiscount Description (string) or Discount Description (null)(Discount Description)

A description of the discount

Any of:

A description of the discount

string(Discount Description)
created_atstring(date-time)(Timestamp)required

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

Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "product": { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "description": "string", "default_price": "string" }, "amount": "string", "quantity": "string", "price": "string", "description": "string", "discount": "string", "discount_description": "string", "created_at": "2019-08-24T14:15:22Z" }

Configure available payment methods

Operations

Manage accounts for payment collection

Operations