GET
/
chain
/
{chain-id}
/
erc20-token
/
{token-address}
/
owners
curl --request GET \
  --url https://evm.preview-api.modular.cloud/v1/chain/{chain-id}/erc20-token/{token-address}/owners
{
  "result": {
    "owners": [
      {
        "address": "<string>",
        "balance": "<string>"
      }
    ],
    "nextToken": "<string>"
  },
  "error": {
    "message": "<string>"
  }
}

Path Parameters

chain-id
string
required
token-address
string
required

Query Parameters

maxResults
integer

default is 30

nextToken
string

Response

200 - application/json
Successful response
result
object
error
object