Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.tight.com/llms.txt

Use this file to discover all available pages before exploring further.

The Form 1120 is used by C-corporations to file taxes with the IRS. Tight makes generating this form a breeze.

1. How it works

Take a look at our Tax Reporting docs for an overview on how to easily generate tax reports for your users. Any data that has been tracked within the Tight API, including expenses, income, etc., will all automatically flow into the Form 1120.

2. Generating your Form 1120

To generate the report, simply create a POST call, as shown below:
curl \
  --request POST \
  --url https://sandbox.hurdlr.com/rest/v5/reports/report \
  --header 'Authorization: Bearer ${access_token}' \
  --header 'Content-Type: application/json' \
  --data '{
    "name": "form1120",
    "params": {
      "year": 2020,
    },
    "exportType": "PDF"
  }'