GET
/
tax
/
tax-forms
List Tax Forms
curl --request GET \
  --url https://api.paxos.com/v2/tax/tax-forms \
  --header 'Authorization: Bearer <token>'
{
  "tax_form_urls": [
    {
      "account_id": "<string>",
      "type": "FORM_1099_B",
      "tax_year": "<string>",
      "revision": "<string>",
      "url": "<string>"
    }
  ],
  "next_page_cursor": "<string>"
}

Authorizations

Authorization
string
header
required

Paxos APIs use OAuth 2 with the client credentials grant flow.

Token URLs:

Learn more in the API credentials guide →

Query Parameters

account_ids
string[]

Optional. A list of Account IDs. Maximum 50.

tax_year
string
required

Required. Tax year

form_types
enum<string>[]

Form types

users_limit
integer

Number of results to return. Defaults to 50.

order_by
enum<string>

The specific method by which the returned results will be ordered. Defaults to ID.

Available options:
ID
order
enum<string>

Return items in ascending (ASC) or descending (DESC) order. Defaults to ASC.

Available options:
DESC,
ASC
page_cursor
string

Cursor token for fetching the next page.

Response

200 - application/json

A successful response.

The response is of type object.