Skip to main content
GET
/
tax-forms
Search Tax Forms
curl --request GET \
  --url https://api.meow.com/v1/tax-forms \
  --header 'x-api-key: <api-key>'
{
  "tax_forms": [
    {
      "tax_form_id": "<string>",
      "tax_year": 123
    }
  ]
}

Authorizations

x-api-key
string
header
required

Your Meow API key, sent in the x-api-key header for authentication.

Headers

x-entity-id
string<uuid>

Optional entity_id to scope requests to a specific entity.

Query Parameters

accountId
string
required

The account ID to list tax forms for.

taxYear
integer | null

Optional filter to a specific tax year.

taxForms
enum<string>[] | null

Filter to one or more form types, such as Tax1099Int or Tax1099Div. Repeat the parameter to pass several.

Available options:
Tax1099Int,
Tax1099Div,
Tax1099B,
Tax1099

Response

Successful Response

tax_forms
TaxFormDescriptor · object[]
required

Tax forms issued for this account. Empty if none have been issued, or none match your year and form-type filters.