Skip to main content
GET
/
oracles
/
prices
Get Kamino oracle prices
curl --request GET \
  --url https://api.kamino.finance/oracles/prices
[
  {
    "price": "1234.56789",
    "mint": "So11111111111111111111111111111111111111112",
    "maxAgeInSeconds": "120",
    "timestamp": "1763568282",
    "name": "SOL"
  }
]

Documentation Index

Fetch the complete documentation index at: https://kamino.com/docs/llms.txt

Use this file to discover all available pages before exploring further.

Query Parameters

markets
enum<string>
default:main

Controls which market set to query. 'main': select oracle prices from main market assets, 'all': select oracle prices from all public klend market assets.

Available options:
main,
all
Example:

"main"

Response

OK

price
string
required

Price value of the asset

Example:

"1234.56789"

mint
string
required

Valid base58-encoded address of the token mint

Example:

"So11111111111111111111111111111111111111112"

maxAgeInSeconds
string
required

Maximum allowed age of the price feed in seconds

Example:

"120"

timestamp
string
required

Epoch Unix timestamp in seconds

Examples:

"0"

"1"

"100"

"-1"

name
string
required

Name of the token

Example:

"SOL"