Export ordinary income for Schedule 1 (Form 1040)
GET
/api/calculate/tax-summary/{address}/export/schedule-1
const url = 'https://api.qeychain.xyz/api/calculate/tax-summary/example/export/schedule-1?tax_year=1&taxpayer_timezone=America%2FNew_York';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://api.qeychain.xyz/api/calculate/tax-summary/example/export/schedule-1?tax_year=1&taxpayer_timezone=America%2FNew_York'Export staking rewards, airdrops, mining income, and DeFi interest as a CSV report for IRS Form 1040 Schedule 1, Line 8z.
IMPORTANT: This is DIFFERENT from capital gains (Form 8949)!
- Ordinary income is taxed at your marginal income tax rate
- The FMV at receipt becomes your cost basis for future sales
Income types included:
- Staking rewards (ETH staking, Cosmos staking, etc.)
- Airdrops (token distributions)
- Mining rewards (PoW mining)
- DeFi interest/yield (Aave, Compound, etc.)
Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”address
required
Address
string
Query Parameters
Section titled “Query Parameters”tax_year
required
Tax Year
Tax year (e.g., 2024)
integer
Tax year (e.g., 2024)
taxpayer_timezone
Taxpayer Timezone
Taxpayer’s timezone for tax year boundaries
string
Taxpayer’s timezone for tax year boundaries
owned_wallets
Responses
Section titled “Responses”CSV file download
Examplegenerated
exampleBad Request
Not Found
Validation Error
Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example" } ]}Internal Server Error
