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

List Invoicing Customers

Request

Returns a list of all invoicing customers.

Security
apiKeyAuth
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/customers \
  -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
nicknamestring(Nickname)required
emailEmail (string) or Email (null)(Email)
Any of:
string(email)(Email)
addressAddressResponse (object) or null
Any of:
object AddressResponse Recursive
created_timestring(date-time)(Created Time)required
updated_timeUpdated Time (string) or Updated Time (null)(Updated Time)
Any of:
string(date-time)(Updated Time)
]
Response
application/json
[ { "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "nickname": "string", "email": "user@example.com", "address": {}, "created_time": "2019-08-24T14:15:22Z", "updated_time": "2019-08-24T14:15:22Z" } ]

Create Invoicing Customer

Request

Creates a new invoicing customer.

Security
apiKeyAuth
Headers
x-entity-idstring(uuid)

Optional entity ID for scoped access to entity-specific data

Bodyapplication/jsonrequired
nicknamestring(Nickname)non-emptyrequired
emailstring(email)(Email)required
addressAddressRequest (object) or null
Any of:
object AddressRequest Recursive
curl -i -X POST \
  https://docs.meow.com/_mock/meow_api/billing/customers \
  -H 'Content-Type: application/json' \
  -H 'x-api-key: YOUR_API_KEY_HERE' \
  -H 'x-entity-id: 497f6eca-6276-4993-bfeb-53cbbbba6f08' \
  -d '{
    "nickname": "string",
    "email": "user@example.com",
    "address": {
      "street_line_1": "string",
      "street_line_2": "string",
      "city": "string",
      "state": "string",
      "country": "AW",
      "postal_code": "string"
    }
  }'

Responses

Successful Response

Bodyapplication/json
idstring(uuid)(Id)required
nicknamestring(Nickname)required
emailEmail (string) or Email (null)(Email)
Any of:
string(email)(Email)
addressAddressResponse (object) or null
Any of:
object AddressResponse Recursive
created_timestring(date-time)(Created Time)required
updated_timeUpdated Time (string) or Updated Time (null)(Updated Time)
Any of:
string(date-time)(Updated Time)
Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "nickname": "string", "email": "user@example.com", "address": { "street_line_1": "string", "street_line_2": "string", "city": "string", "state": "string", "country": "AW", "postal_code": "string" }, "created_time": "2019-08-24T14:15:22Z", "updated_time": "2019-08-24T14:15:22Z" }

Get Invoicing Customer by ID

Request

Returns an invoicing customer by their ID.

Security
apiKeyAuth
Path
customer_idstring(uuid)(Customer 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/customers/{customer_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
nicknamestring(Nickname)required
emailEmail (string) or Email (null)(Email)
Any of:
string(email)(Email)
addressAddressResponse (object) or null
Any of:
object AddressResponse Recursive
created_timestring(date-time)(Created Time)required
updated_timeUpdated Time (string) or Updated Time (null)(Updated Time)
Any of:
string(date-time)(Updated Time)
Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "nickname": "string", "email": "user@example.com", "address": { "street_line_1": "string", "street_line_2": "string", "city": "string", "state": "string", "country": "AW", "postal_code": "string" }, "created_time": "2019-08-24T14:15:22Z", "updated_time": "2019-08-24T14:15:22Z" }

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