Skip to main content

Transfers API

Query token transfers on the Cosmos blockchain, including sender/receiver details, currency info, and transfer values.

Get Cosmos Transfers by Signer Sorted by Time and Value

Retrieve the latest token transfers initiated by a specific transaction signer, sorted by timestamp and value in descending order. Returns the top 10 transfers with full block, currency, and participant details.

Variations: Remove the transactionSigner filter to see all transfers, or add a currency filter for a specific token. See query features for sorting and pagination.

{
cosmos {
transfers(
transactionSigner: {is: "cosmos1alprdufsxvxauwcsh08hjpzsqc8elwlq3evztg"}
options: {desc: ["block.timestamp.iso8601", "value"], limit: 10}
) {
block {
height
timestamp {
iso8601
}
}
currency {
address
name
}
receiver {
address
}
sender {
address
}
transaction {
hash
}
type
value
}
}
}

Get Recent Cosmos Transfers for a Specific Currency

Fetch the highest-value ATOM transfers after a given date. Returns the top 10 transfers sorted by value, with block, currency, and participant details.

Variations: Change currency: {is: "Atom"} to query a different token. Adjust the date filter or switch sorting to block.timestamp.iso8601 for chronological order. See query features for more options.

{
cosmos {
transfers(
options: {desc: "value", limit: 10}
date: {after: "2023-08-05"}
currency: {is: "Atom"}
) {
block {
height
timestamp {
iso8601
}
}
currency {
address
name
}
receiver {
address
}
sender {
address
}
transaction {
hash
}
type
value
}
}
}