Plume API
Utility

/crypto

Get the price of a crypto currency and some stats

GET
/crypto

Query Parameters

name*string

The crypto name. Example: bitcoin, ethereum

Length3 <= length <= 30
currency*string

The currency of the result

Value in"usd" | "eur"

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://plume.sodiumlabs.xyz/api/crypto?name=string&currency=usd"
{
  "name": "string",
  "currency": "string",
  "price": 0,
  "market_cap": 0,
  "volume_24h": 0,
  "change_24h": 0
}
{
  "message": "string"
}
{
  "message": "string",
  "errors": [
    {
      "message": "string"
    }
  ]
}
{
  "message": "string"
}