Skip to main content
POST
/
api
/
defillama
/
stablecoins
/
search
/defillama/stablecoins/search
curl --request POST \
  --url https://api.anysite.io/api/defillama/stablecoins/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300
}
'
[
  {
    "id": "<string>",
    "name": "<string>",
    "@type": "@defillama_stablecoin",
    "symbol": "<string>",
    "gecko_id": "<string>",
    "peg_type": "<string>",
    "peg_mechanism": "<string>",
    "price": 123,
    "circulating": 123,
    "chains": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of results to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
peg_type
enum<string> | null

Filter by the fiat currency the stablecoin is pegged to

Available options:
peggedUSD,
peggedEUR,
peggedVAR,
peggedJPY,
peggedGBP,
peggedCHF,
peggedCAD,
peggedAUD,
peggedREAL,
peggedCNY,
peggedRUB,
peggedARS,
peggedMXN,
peggedCOP,
peggedPHP,
peggedSGD,
peggedTRY,
peggedKES,
peggedZAR,
peggedNGN,
peggedXOF,
peggedGHS,
peggedCLP,
peggedPEN,
peggedUAH
peg_mechanism
enum<string> | null

Filter by how the stablecoin maintains its peg

Available options:
fiat-backed,
crypto-backed,
algorithmic

Response

Successful Response

id
string
required
name
string
required
@type
string
default:@defillama_stablecoin
symbol
string | null
gecko_id
string | null
peg_type
string | null
peg_mechanism
string | null
price
number | null
circulating
number | null
chains
string[]