Endpoints
List of APIs for communicating with Athena
Endpoints
Asks Athena any question using a query string.
GET
https://api.wisdomise.io/v0/athena/ask
Athena currently can answer questions for BTC, ETH, LTC, ADA, BNB, XRP, TRX in the following areas:
-Real-time prices
-Latest news highlights
-1h and 15m AI generated signals in Long/Short markets
-Market trend prediction
-Portfolio construction for holders
-Informative and learning materials related to blockchain, crypto, and finance
-Funding rates
etc.
Athena can also do many different types of analysis combining all the above domains by simply asking: "What is your analysis for crypto today?"
------------
Curl Command:
curl --location 'https://api.wisdomise.io/v0/athena/ask/?q=”What is widomise?”' --header "Authorization: Bearer ${BEARER_TOKEN}"
Query Parameters
q*
String
Question
Headers
Authorization*
String
Token <AUTH_TOKEN>
Server Sent Events (SSE)
SSE Stream example:
event: message
data: {“partial_event_data”: “BTC price in”}
event: message
data: {“partial_event_data”: “the next hour”}
event: message
data: {“partial_event_data”: “is predicted $29,432.12”}
…
event: terminate
data: {“some_json_containing_all_qa_data”: “value”}
Last updated