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.
- Mock serverhttps://docs.meow.com/_mock/meow_api/accounts
- Meow API Productionhttps://api.meow.com/v1/accounts
- Meow API Sandboxhttps://api.sandbox.meow.com/v1/accounts
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://docs.meow.com/_mock/meow_api/accounts \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-entity-id: 497f6eca-6276-4993-bfeb-53cbbbba6f08'Successful Response
An array of accounts with entity types dependent on the account type (deposit, investment, loan, or line of credit). Return an empty array if this information isn't available. All account types are accepted for this endpoint but account details are consumed though GET accounts/{accountID} solely for deposit, loan, and line-of-credit accounts.
This provides an instance of an account without full details
{ "page": { "nextOffset": "qwer123454q2f" }, "accounts": [ { … }, { … } ] }
- Mock serverhttps://docs.meow.com/_mock/meow_api/accounts/{account_id}
- Meow API Productionhttps://api.meow.com/v1/accounts/{account_id}
- Meow API Sandboxhttps://api.sandbox.meow.com/v1/accounts/{account_id}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://docs.meow.com/_mock/meow_api/accounts/{account_id}' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-H 'x-entity-id: 497f6eca-6276-4993-bfeb-53cbbbba6f08'{ "depositAccount": { "accountId": "string", "accountType": "BROKERAGEPRODUCT", "accountNumberDisplay": 4321, "productName": "string", "nickname": "string", "status": "CLOSED", "currency": { … }, "currentBalance": 0, "availableBalance": 0, "bankProductType": "string" } }