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://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

Request

Validates a routing number and returns bank information including name, address, and supported payment methods (ACH/Wire).

Security
apiKeyAuth
Path
routing_numberstring(Routing Number)= 9 charactersrequired
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/routing-numbers/{routing_number}' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'x-entity-id: 497f6eca-6276-4993-bfeb-53cbbbba6f08'

Responses

Successful Response

Bodyapplication/json
routing_numberstring(Routing Number)required

The routing number

bank_namestring(Bank Name)required

The name of the bank

bank_short_nameBank Short Name (string) or Bank Short Name (null)(Bank Short Name)

The short name of the bank if available

Any of:

The short name of the bank if available

string(Bank Short Name)
address_1Address 1 (string) or Address 1 (null)(Address 1)

The primary address line

Any of:

The primary address line

string(Address 1)
address_2Address 2 (string) or Address 2 (null)(Address 2)

The secondary address line

Any of:

The secondary address line

string(Address 2)
wireWire (boolean) or Wire (null)(Wire)

Whether the bank supports wire transfers

Any of:

Whether the bank supports wire transfers

boolean(Wire)
achAch (boolean) or Ach (null)(Ach)

Whether the bank supports ACH transfers

Any of:

Whether the bank supports ACH transfers

boolean(Ach)
cityCity (string) or City (null)(City)

The city of the bank branch

Any of:

The city of the bank branch

string(City)
stateState (string) or State (null)(State)

The state of the bank branch

Any of:

The state of the bank branch

string(State)
zip_codeZip Code (string) or Zip Code (null)(Zip Code)

The zip code of the bank branch

Any of:

The zip code of the bank branch

string(Zip Code)
Response
application/json
{ "routing_number": "string", "bank_name": "string", "bank_short_name": "string", "address_1": "string", "address_2": "string", "wire": true, "ach": true, "city": "string", "state": "string", "zip_code": "string" }

Bill

View and manage bills for vendor payments

Operations

Products

Manage products and pricing for invoicing

Operations

Customers

Manage billing customers and their information

Operations

Invoices

Create and manage invoices

Operations

Line Items

Manage invoice line items

Operations

Payment Methods

Configure available payment methods

Operations

Collection Accounts

Manage accounts for payment collection

Operations