Skip to main content

Attributes

The table below outlines the values for Tax Document fields:
AttributeTypeDescription
idstringUnique identifier
document_typestringType of document
document_subtypestringSubtype of document
fileuriLink to tax document file, format is specified in the content-type (up to 2048 characters long)
md5sumstringMD5 hash value computed based on file content
yearintegerTax document year
fieldsobjectAdditional metadata for a specific document type

Endpoints

Example Responses

Generic Response Format

[
  {
    "id": "string",
    "document_type": "W2",
    "file": "string",
    "md5sum": "string",
    "year": 2024,
    "fields": {}
  }
]

W2 Example

This payload example represents a W-2 form response:
{
  "federal_tax": "4102.75",
  "medicare_tax": "816.43",
  "medicare_wages": "58805.40",
  "social_security_tax": "3490.93",
  "social_security_wages": "58805.40",
  "wages": "56269.25"
}

1099 Example

For all 1099 forms, the document year alongside user information is provided.

1040 Example

{
  "total_income": "1000.00"
}