WaveMarket API Documentation

Version 1.0.0

Introduction

Welcome to the WaveMarket API documentation. Our API provides programmatic access to WaveMarket's powerful trading platform, market data, and AI-powered insights. This guide will help you get started with integrating WaveMarket into your applications.

The WaveMarket API is organized around REST principles. It uses standard HTTP response codes, authentication, and verbs. All responses are returned in JSON format.

Base URL for all API requests:

https://api.wavemarket.com/v1

Authentication

The WaveMarket API uses API keys to authenticate requests. You can view and manage your API keys in the API section of your WaveMarket dashboard.

Authentication is performed via HTTP headers:

X-API-Key: your_api_key
X-API-Secret: your_api_secret

Example request with authentication:

// Using fetch in JavaScript
fetch('https://api.wavemarket.com/v1/account', {
  method: 'GET',
  headers: {
    'X-API-Key': 'your_api_key',
    'X-API-Secret': 'your_api_secret'
  }
})
.then(response => response.json())
.then(data => console.log(data));

Rate Limits

The WaveMarket API implements rate limiting to protect our infrastructure and ensure fair usage. Rate limits vary based on the endpoint and your account tier.

Rate limit headers are included in all API responses:

X-RateLimit-Limit: 60
X-RateLimit-Remaining: 59
X-RateLimit-Reset: 1617192000

If you exceed the rate limit, you will receive a 429 Too Many Requests response. The response will include a Retry-After header indicating how many seconds to wait before making another request.

Error Handling

The WaveMarket API uses conventional HTTP response codes to indicate the success or failure of an API request. In general, codes in the 2xx range indicate success, codes in the 4xx range indicate an error that failed given the information provided, and codes in the 5xx range indicate an error with WaveMarket's servers.

All error responses include a JSON object with the following properties:

{
  "error": {
    "code": "invalid_request",
    "message": "The request was unacceptable, often due to missing a required parameter.",
    "status": 400
  }
}

Market Overview

GET /market/overview

Returns an overview of the market, including top gainers, losers, and trending assets.

Query Parameters

Parameter Type Description
market string Market type to filter by. Options: crypto, stocks, forex, commodities. Optional
limit integer Number of results to return per category. Default: 10, Max: 100. Optional

Response

{
  "gainers": [
    {
      "symbol": "BTC/USD",
      "name": "Bitcoin",
      "price": 67432.18,
      "change": 2.87,
      "volume": 42800000000
    },
    // More gainers...
  ],
  "losers": [
    {
      "symbol": "XRP/USD",
      "name": "Ripple",
      "price": 0.5423,
      "change": -0.78,
      "volume": 2100000000
    },
    // More losers...
  ],
  "trending": [
    {
      "symbol": "DOGE/USD",
      "name": "Dogecoin",
      "price": 0.1234,
      "change": 8.45,
      "volume": 3400000000
    },
    // More trending assets...
  ]
}

Ticker

GET /market/ticker

Returns 24-hour price statistics for a specific trading pair or all trading pairs.

Query Parameters

Parameter Type Description
symbol string Trading pair symbol (e.g., BTC/USD). Optional

Response

Single Symbol
All Symbols
{
  "symbol": "BTC/USD",
  "price": 67432.18,
  "high": 68245.32,
  "low": 66789.45,
  "volume": 42800000000,
  "change": 2.87,
  "timestamp": 1617192000
}
[
  {
    "symbol": "BTC/USD",
    "price": 67432.18,
    "high": 68245.32,
    "low": 66789.45,
    "volume": 42800000000,
    "change": 2.87,
    "timestamp": 1617192000
  },
  {
    "symbol": "ETH/USD",
    "price": 3245.92,
    "high": 3300.15,
    "low": 3180.45,
    "volume": 18300000000,
    "change": 1.54,
    "timestamp": 1617192000
  },
  // More trading pairs...
]

AI Insights

GET /ai/insights

Returns AI-generated insights and recommendations based on market data and user portfolio.

Query Parameters

Parameter Type Description
symbol string Trading pair symbol to get insights for (e.g., BTC/USD). Optional
type string Type of insights to return. Options: technical, fundamental, sentiment, all. Default: all. Optional
timeframe string Timeframe for insights. Options: short, medium, long. Default: medium. Optional

Response

{
  "symbol": "BTC/USD",
  "timestamp": 1617192000,
  "insights": [
    {
      "type": "technical",
      "timeframe": "medium",
      "title": "Golden Cross Pattern Detected",
      "description": "A golden cross pattern has formed on the 4-hour chart, indicating potential bullish momentum.",
      "confidence": 0.85,
      "recommendation": "Consider increasing position if price breaks above $68,500 resistance level."
    },
    {
      "type": "sentiment",
      "timeframe": "short",
      "title": "Positive Social Media Sentiment",
      "description": "Social media sentiment analysis shows increasing positive mentions in the last 24 hours.",
      "confidence": 0.72,
      "recommendation": "Monitor short-term price action for potential upward movement."
    },
    // More insights...
  ]
}