ERC-20 Tokens
Query ERC-20 Owners
GET
/
api
/
v1
/
erc20
/
owners
Authorization
Query
curl --location 'https://groupos.xyz/api/v1/erc20/owners' \
--request GET \
-d 'chainId=1' \
-d 'contractAddress=0x67F4732266C7300cca593C814d46bee72e40659F' \
-d 'ownerAddress=0xc517c83f417b73dA98647dad0FCB80af9f3b9531' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'
{
"success": true,
"owners": [
{
"ownerAddress": "0xc517c83f417b73da98647dad0fcb80af9f3b9531",
"totalBalance": "12.75",
"totalBalanceRaw": "12750000000000000000"
}
]
}
Query Params
chainId
number
requiredThe id of the chain supporting the token. This cannot be changed after creation.
contractAddress
string
requiredThe ERC-20 smart contract address.
ownerAddress
string
An token owner to filter on.
page
number
Page index to fetch, page size is 50
.
Response
success
boolean
Indicates whether the call was successful.
owners
object[]
Array of owner objects.
curl --location 'https://groupos.xyz/api/v1/erc20/owners' \
--request GET \
-d 'chainId=1' \
-d 'contractAddress=0x67F4732266C7300cca593C814d46bee72e40659F' \
-d 'ownerAddress=0xc517c83f417b73dA98647dad0FCB80af9f3b9531' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <token>'
{
"success": true,
"owners": [
{
"ownerAddress": "0xc517c83f417b73da98647dad0fcb80af9f3b9531",
"totalBalance": "12.75",
"totalBalanceRaw": "12750000000000000000"
}
]
}