Skip to main content

Querying tax residency

taxResidencyChanges exposes the per‑jurisdiction tax residency declarations recorded in this bank report. See the Tax residency concept.

All examples require a JWT — get one from the homepage first.

Fetch the tax residency declarations

query bankReportTaxResidencyChanges($id: UUID!) {
bankReportById(id: $id) {
id
isTaxResidencyRequired
taxResidencyChanges {
taxResidencyRelation {
tin
country {
alpha2
name
}
}
}
}
}

Entries whose change state is Removed are filtered out server‑side — you only see active declarations.