Taxpayer
Taxpayer
Retrieve taxpayer information associated with an access_token
.
GET
/
tax-payer
curl --request GET \
--url https://api.trychart.com/tax-payer \
--header 'Authorization: Bearer <token>'
{
"id": "clxjfvx74000f11di1uq2u8xm",
"name": "Joe Doe",
"metadata": {},
"provider_id": "irs-tax-pro",
"created_at": "2024-06-17T20:40:03.965Z",
"status": "TAX_AUTHORIZATION_SUBMITTED",
"analysis": {
"total_liabilities": "5000",
"liabilities_with_lien_filed": "3000",
"employment_history": [
{
"type": "WAID",
"year": "2023",
"employer": {
"ein": "XXXXX2003",
"name": "CHAR",
"address": "609 WA"
}
}
]
},
"details": {
"address": {
"street_address": "123 Main St",
"city": "San Francisco",
"state": "CA",
"zip_code": "94101"
},
"balance_summary": {
"balance_due": 5000,
"tax_years": [
{
"amount": 2500,
"year": "2023"
}
]
}
},
"form8821": "<string>"
}
Authorizations
Please use your access_token returned from the /auth/token endpoint.
Response
200 - application/json
Introspect Response
The response is of type object
.
Was this page helpful?
curl --request GET \
--url https://api.trychart.com/tax-payer \
--header 'Authorization: Bearer <token>'
{
"id": "clxjfvx74000f11di1uq2u8xm",
"name": "Joe Doe",
"metadata": {},
"provider_id": "irs-tax-pro",
"created_at": "2024-06-17T20:40:03.965Z",
"status": "TAX_AUTHORIZATION_SUBMITTED",
"analysis": {
"total_liabilities": "5000",
"liabilities_with_lien_filed": "3000",
"employment_history": [
{
"type": "WAID",
"year": "2023",
"employer": {
"ein": "XXXXX2003",
"name": "CHAR",
"address": "609 WA"
}
}
]
},
"details": {
"address": {
"street_address": "123 Main St",
"city": "San Francisco",
"state": "CA",
"zip_code": "94101"
},
"balance_summary": {
"balance_due": 5000,
"tax_years": [
{
"amount": 2500,
"year": "2023"
}
]
}
},
"form8821": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.