Get Schedule 1 ordinary income summary
GET
/api/calculate/tax-summary/{address}/schedule-1-summary
const url = 'https://api.qeychain.xyz/api/calculate/tax-summary/example/schedule-1-summary?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/schedule-1-summary?tax_year=1&taxpayer_timezone=America%2FNew_York'Get summary statistics for ordinary income (staking, airdrops, mining, interest) without generating the full export.
Returns totals by income category for quick review.
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”Successful Response
Media typeapplication/json
Response Get Schedule 1 Summary Api Calculate Tax Summary Address Schedule 1 Summary Get
object
key
additional properties
any
Examplegenerated
{}Bad 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
