Crypto AI API (1.0.0)

Download OpenAPI specification:Download

An API that provides real-time analytics, sentiment analysis, pattern recognition, and trend predictions for cryptocurrency trading.

Fetch And Save

Responses

Response samples

Content type
application/json
null

Trigger Analytics Calculation

query Parameters
crypto
required
string (Crypto)
window
integer (Window)
Default: 14

Responses

Response samples

Content type
application/json
null

Analyze Sentiment

Request Body schema: application/json
crypto
required
string (Crypto)

Responses

Request samples

Content type
application/json
{
  • "crypto": "string"
}

Response samples

Content type
application/json
null

Retrieve Latest Crypto Price

Responses

Response samples

Content type
application/json
{
  • "crypto": "string",
  • "timestamp": "string",
  • "price": 0
}

Predict Crypto Trends

Predicts trend continuation probabilities and forecasts the next price movement for the given cryptocurrency.

query Parameters
crypto
required
string (Crypto)

Responses

Response samples

Content type
application/json
{
  • "crypto": "string",
  • "trend_continuation_prob": 0,
  • "trend_reversal_prob": 0,
  • "next_predicted_price": 0
}

Detect Chart Patterns

Detects classic chart patterns that traders use to anticipate price movements.

query Parameters
crypto
required
string (Crypto)

Responses

Response samples

Content type
application/json
{
  • "crypto": "string",
  • "head_and_shoulders": true,
  • "triangle": "string",
  • "flag": "string"
}

Get Crypto Sentiment

Retrieves sentiment data for a specific cryptocurrency, showing if public sentiment is bullish or bearish.

query Parameters
crypto
required
string (Crypto)

Responses

Response samples

Content type
application/json
{
  • "crypto": "string",
  • "sentiment_score": 0
}

Retrieve Market Analytics

Retrieves various analytics metrics such as moving averages, RSI, and price volatility for a given cryptocurrency.

query Parameters
crypto
required
string (Crypto)

Responses

Response samples

Content type
application/json
{
  • "crypto": "string",
  • "moving_average_50": 0,
  • "moving_average_200": 0,
  • "rsi": 0,
  • "volatility": 0
}