Intelligent IRS Form 1099-DA Generation
form-1099-da.com helps filers of IRS Form 1099-DA generate portable document format (PDF) files for distribution to recipients

Landscape
The PDF files are in landscape format and provide for multiple transactions per page

Intelligent
They are Intelligent Tax Documents®. The form data is embedded in the PDF in Financial Data Exchange format (FDX JSON) for import into tax software

App or API
Use either the included app or the API (Application Program Interface) — using a client application you create

Docker
The application is also available as a Docker image for deployment in your own server environment
See below for more information
Compare Portrait and Landscape
Official IRS Form (Portrait)
One sale per page.

Landscape Form
Up to 18 sales per page.

Docker Image
The application is also available as a Docker image for deployment in your own server environment
The Docker image will save you over 80 hours of research and development effort.
The Docker image is priced accordingly at $8,000 (subject to change).
Order the Docker image
Download and review sample Docker image license agreement
Download and review sample Intelligent Tax Document® trademark license agreement (included with Docker image)
Contact us at support@itips.info to license the Docker image
Steps to Use Docker Image
1. Download the docker image from Google Artifact Registry
docker pull \ us-central1-docker.pkg.dev/taxdochub-endpoints/tax-doc-server-tax1099da/tax1099da-generator:latest
2. Start the app on your system
docker run --publish 8080:8080 \ us-central1-docker.pkg.dev/taxdochub-endpoints/tax-doc-server-tax1099da/tax1099da-generator:latest
3. Marshal tax data from your system and map the data to prescribed JSON format
For each form to be generated, retrieve the form data and generate the required JSON document.
The document consists of an FDX (Financial Data Exchange) “Tax Statement” object serialized to JSON.
FDX tax schema and generated code is available at this GitHub repository:
https://github.com/iTipsDev/fdx-tax-schema-v6.4.1
(Email support@itips.info for access.)
4. Post JSON to the app
Using HTTP client software you create, post the JSON data to the app as illustrated in this “Curl” command.
curl --request POST \ --location "http://localhost:8080/fdx/v6/tax-forms" \ --header "Content-Type: application/json" \ --header "Accept: application/pdf" \ --data TaxStatement.json
5. Capture and save the PDF content generated by the app
The app will generate and return a PDF document. Capture the response content and save it to your system.
Also
Landscape Form 1099-DA PDF template files are available from Google Artifact Registry.
PROJECT=taxdochub-endpoints LOCATION=us-central1 REPOSITORY=pdf-template-files DESTINATION=~/Downloads FILE=pdfs:v2025.0.0:f1099da-landscape.zip gcloud artifacts files download \ --project=${PROJECT} \ --location=${LOCATION} \ --repository=${REPOSITORY} \ --destination=${DESTINATION} \ ${FILE}
2025-08-22 13:37