CriptoCheck
How it worksGuidesFAQCompare
← CriptoCheck

Developer API

You can call the same endpoint we use for the website and the browser extension, directly from your own program. Free, no key required for now -- just a reasonable rate limit to protect the service for everyone.

Current phase: open access, no registration. In the future we may introduce API keys and a paid tier for heavy commercial use -- light/testing use will remain free regardless.

Endpoint

GET https://criptocheck-backend.onrender.com/check

Parameters

address (string, required)
The Solana token's mint address to check.
lang (string, optional)
Language for the explanatory notes: it, en, de, es, pt. Default: it.

Example request

curl "https://criptocheck-backend.onrender.com/check?address=DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263&lang=en"

Example response (abbreviated)

{ "mint": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263", "nome": "Bonk", "simbolo": "Bonk", "indicatori": { "contratto_e_ownership": { "mint_authority_revocata": { "colore": "verde" }, "freeze_authority_revocata": { "colore": "verde" }, "verificato_jupiter": { "colore": "verde" } }, "liquidita": { "liquidita": { "colore": "rosso", "percentuale_bloccata": 23.1 } } // ... altre categorie di indicatori } }

Usage limits

60 requests per minute per IP address. Beyond this, the endpoint returns a 429 status code ("too many requests") -- retry after a few seconds.

Terms of use

Service provided as-is, with no guarantee of uptime or response times. Free to use for personal projects, research, or third-party tools -- if you integrate it into a public product, an attribution link to criptocheck.com is appreciated but not required.