Meow Collection Accounts API
Manage accounts for payment collection.
Manage accounts for payment collection.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
find_apisBrowse and filter every API in the catalog.get_api_artifactsOne API's artifacts, grouped by type.get_openapiThe primary OpenAPI for this API.find_similar_apisAPIs that look like this one.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.curl "https://apis.io/api/v1/apis/meow-collection-accounts-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Meow Collection Accounts API
description: '## Overview
The Meow API provides financial services and billing capabilities for your business.'
contact:
name: Meow
url: https://meow.com/
email: support@meow.com
version: 1.0.0
license:
name: Proprietary
url: https://www.meow.com/terms-of-service
servers:
- url: https://api.meow.com/v1
description: Meow API Production
- url: https://api.sandbox.meow.com/v1
description: Meow API Sandbox
security:
- apiKeyAuth: []
tags:
- name: Collection Accounts
description: Manage accounts for payment collection.
paths:
/billing/accounts:
get:
tags:
- Collection Accounts
summary: List Collection Accounts
description: Returns the collection accounts you can use to collect invoice payments. Only open, unlocked accounts are returned, with your primary account first.
operationId: list_billing_accounts_billing_accounts_get
responses:
'200':
description: Successful Response
content:
application/json:
schema:
$ref: '#/components/schemas/BillingAccounts'
security:
- apiKeyAuth:
- billing:accounts:read
parameters:
- $ref: '#/components/parameters/EntityIdHeader'
components:
parameters:
EntityIdHeader:
name: x-entity-id
in: header
required: false
schema:
type: string
format: uuid
description: Optional `entity_id` to scope requests to a specific entity.
schemas:
BillingAccounts:
properties:
accounts:
items:
$ref: '#/components/schemas/BillingAccount'
type: array
title: Accounts
description: List of available collection accounts for invoices.
type: object
required:
- accounts
title: BillingAccounts
description: 'List of billing accounts available for invoice collection.
Accounts are sorted with primary accounts first, then by display name.'
BillingAccount:
properties:
id:
type: string
format: uuid
title: Id
description: The account ID to use as `collection_account_id` when creating invoices.
display_name:
type: string
title: Display Name
description: The display name of the account.
account_number_mask:
type: string
title: Account Number Mask
description: Masked account number showing only the last 4 digits.
examples:
- ••1234
status:
type: string
title: Status
description: The status of the account.
examples:
- open
- closed
is_primary:
type: boolean
title: Is Primary
description: Whether this is the primary operational account.
banking_product:
type: string
title: Banking Product
description: The bank this account is held at.
type: object
required:
- id
- display_name
- account_number_mask
- status
- is_primary
- banking_product
title: BillingAccount
description: 'A checking account that can receive invoice payments.
Only includes accounts that are open and not locked.'
securitySchemes:
apiKeyAuth:
type: apiKey
in: header
name: x-api-key
description: Your Meow API key, sent in the `x-api-key` header for authentication.
x-scopes:
- accounts:read
- accounts:write
- accounts:payment-networks
- accounts:transactions
- accounts:balances
- accounts:statements
- accounts:tax-documents
- entity:create
- transfers:crypto:write
- transfers:usdc:write
- transfers:ach:write
- transfers:wire:write
- transfers:book:write
- contacts:read
- contacts:write
- billing:products:read
- billing:products:write
- billing:customers:read
- billing:customers:write
- billing:invoices:read
- billing:invoices:write
- billing:accounts:read
- billpay:read
- billpay:write
- onboarding:read
- onboarding:write
- cards:read
- cards:write
- webhooks:read
- webhooks:write
- partner:onboarding:read
- partner:onboarding:write
- partner:webhooks:read
- partner:webhooks:write
- simulations:write
- banking:limits:read
- banking:limits:write
x-tagGroups:
- name: Core API
tags:
- API Keys
- Contacts
- Accounts
- Transactions
- Balances
- Payment Networks
- Transfers
- Routing Numbers
- Cards
- Tax Forms
- Webhooks
- name: Bill Pay
tags:
- Bills
- name: Billing
tags:
- Products
- Customers
- Invoices
- Line Items
- Payment Methods
- Collection Accounts
- name: Partner Onboarding
tags:
- Partner Onboarding
- name: Sandbox
tags:
- Simulations