Integrations
Understand how Nomadfiling handles payments, fax delivery, AI-assisted checks, and document generation.
curl -X POST "https://api.telnyx.com/v2/faxes" \
-H "Authorization: Bearer txai_example_8k2m4q7p" \
-H "Content-Type: application/json" \
-d '{
"connection_id": "2935264480004671439",
"from": "+17869848552",
"to": "+13051234567",
"media_url": "https://app.nomadfiling.com/storage/faxes/fil_9a2c7b1d.pdf",
"quality": "high"
}'
{
"data": {
"id": "fax_01hv8s4n2p9x6m",
"status": "queued",
"from": "+17869848552",
"to": "+13051234567",
"connection_id": "2935264480004671439",
"quality": "high"
}
}
Nomadfiling connects payments, filing delivery, document generation, and account data through a small set of third-party services
Most integrations in Nomadfiling support a specific filing workflow: collect payment, generate PDFs, send forms by fax, and track the result.
Use this page to understand what each integration does, where it appears in the product, and what data or actions depend on it.
Nomadfiling is a filing platform for foreign-owned LLCs. The integrations below are the production services used to create, pay for, deliver, and track U.S. tax filing documents in the app.
Stripe
Creates checkout sessions for filing purchases, extension payments, receipts, and promotion codes.
Telnyx
Sends completed tax PDFs by fax and reports delivery status back to Nomadfiling.
AI API
Analyzes PDFs for filing issues and drafts supporting statement text.
Document generation
Fills IRS PDF templates and bundles generated forms into downloadable ZIP files.
Stripe payments
Stripe handles one-time checkout for Nomadfiling purchases. It is used for the main filing tiers, Form 7004 extension checkout, receipt URLs, promotion codes, and metadata passed into payment records.
Nomadfiling offers four pricing tiers, ranging from $147 to $497, through Stripe-powered checkout flows.
Stripe workflows in Nomadfiling
- Main filing checkout for product tiers shown on Pricing
- Extension checkout for Form 7004 purchases
- Payment verification after checkout completes
- Receipt URL storage for paid orders
- Promotion code support during checkout
Stripe edge functions
create-checkoutcreate-extension-checkoutverify-payment
Telnyx fax delivery
Telnyx sends tax form PDFs to IRS fax numbers. When you use Nomadfiling's fax workflow, the app prepares the PDF package, submits it to the Telnyx Fax API, and records the send attempt for later status updates.
This integration powers the product's fax delivery flow described in Fax service.
Fax API configuration
https://api.telnyx.com/v2/faxes
+17869848552
2935264480004671439
Edge functions
send-faxsends the fax and writes a record tofax_logstelnyx-fax-webhookreceives status updates from Telnyx after submission
Success usually looks like a queued or accepted fax record followed by later webhook updates. Nomadfiling uses those webhook events to keep fax status in sync.
AI API compliance and statement generation
Nomadfiling uses an AI API for two focused tasks: checking generated PDFs for likely IRS filing issues and drafting supporting statement text. The AI layer supports review and drafting, not the underlying tax form generation itself.
These features appear in product workflows such as the AI compliance scanner.
Edge functions
analyze-pdfchecks PDFs for filing or formatting issuesgenerate-statementdrafts IRS supporting statement text
The compliance scanner reviews a generated PDF and looks for issues that could block or weaken a filing, such as missing fields or inconsistent form content.
analyze-pdf does not require authentication.
Statement generation drafts text used in IRS supporting statements. The generated text is a starting point that you should review before filing.
generate-statement requires a valid JWT.
AI-generated output should be reviewed before submission. Nomadfiling uses AI to assist with analysis and drafting, not to replace filing review.
PDF generation and ZIP bundling
Nomadfiling generates filing documents in the browser. After generation, it can bundle multiple PDFs into a ZIP archive for download.
This integration layer is what turns filing data into completed IRS forms, cover sheets, supporting statements, and packaged document sets.
PDF generation
The document generator fills IRS form templates stored under /public/templates/. The generated output includes both core returns and supporting documents.
Supported document generation includes:
- Form 5472
- Form 1120
- Form 1065
- Schedule K-1
- Schedule K-2
- Schedule K-3
- Form 8804
- Form 8805
- Form 1040-NR
- Form 7004
- Fax cover sheets
- Late filing letters
- Supporting statements
ZIP bundling
When a filing includes multiple generated documents, Nomadfiling packages those PDFs into a single ZIP download. This is especially useful for multi-document or multi-party filing flows.
A successful ZIP workflow ends with a browser download containing all generated PDFs together rather than separate file downloads.
UI component libraries
Nomadfiling uses shadcn/ui and Radix UI for application interface components. These libraries are not external workflow integrations in the same sense as payments or fax delivery, but they are part of the platform stack readers often ask about.
The codebase includes 46 generated UI components for common interface patterns such as buttons, dialogs, selects, and tables.
How the integrations fit together
Most user-facing filing flows follow the same sequence: create or update filing data, pay if required, generate documents, then deliver or download the result.
That sequence is why service health can affect different parts of the product in different ways. A payment issue does not stop sign-in, but a storage or fax issue can affect delivery.
Related product areas
Features
See how these integrations support the main filing workflows in Nomadfiling.
Pricing
Review the filing tiers and checkout paths powered by Stripe.
Fax service
Learn how fax delivery works, including status updates and submission flow.
MCP overview
Review the broader API and automation surface available in Nomadfiling.