Form 1120

The Form 1120 is used by C-corporations to file taxes with the IRS. Hurdlr 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 Hurdlr 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"
  }'