Token Info and Price
GET TokenInfo
Endpoint
Parameters
Name
Location
Type
Required
Description
Example Request (HTTP)
curl -X GET "https://interface.carv.io/ai-agent-backend/token_info?ticker=aave" \
-H "Content-Type: application/json" \
-H "Authorization: <YOUR_AUTH_TOKEN>"Example Request (Shell)
curl -X GET "https://interface.carv.io/ai-agent-backend/token_info?ticker=aave" \
-H "Authorization: your_token_here"Example Request (JavaScript)
fetch('https://interface.carv.io/ai-agent-backend/token_info?ticker=aave', {
method: 'GET',
headers: {
'Authorization': 'your_token_here'
}
})
.then(response => response.json())
.then(data => console.log(data));Example Response (200 OK)
Example Response (400 Bad Request)
Response Data Schema
Name
Type
Required
Restrictions
Title
Description
Name
Type
Required
Restrictions
Title
Description
Last updated