POST
/
api
curl --request POST \
  --url https://chainz.cryptoids.info/api \
  --header 'API_KEY: <api_key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "contract": "0x43ce81f458c0ef40dd654d8573c899e9df789266",
  "slug": "baet",
  "addrs": [
    "0xaed74b6070647b52299102534d41182df61f3edc",
    "0x9370ffe58cef7702c40f01e6525cc0c3ccf2a702"
  ],
  "strict": false,
  "query": "totalcoins"
}'
"100000000.00"

Headers

API_KEY
string
default:
required

API key for authentication

Body

application/json
contract
string
default:
required
Example:

"0x43ce81f458c0ef40dd654d8573c899e9df789266"

slug
string
default:
required
Example:

"baet"

query
string
default:
required
Example:

"totalcoins"

addrs
string[]
Example:
[
  "0xaed74b6070647b52299102534d41182df61f3edc",
  "0x9370ffe58cef7702c40f01e6525cc0c3ccf2a702"
]
strict
boolean
default:false
Example:

false

Response

200
text/plain
Successful operation

The response is of type string.

Example:

"100000000.00"