API Documentation

Replex API Documentation

Integrate Replex IDO data, wallet transactions, token sale status and user participation details using our secure API endpoints.

API Overview

Replex API allows developers to access IDO sale information, token statistics, wallet contribution records and live project status.

Authentication

Use your API key in the request header.

Authorization: Bearer YOUR_API_KEY

API Endpoints

GET /api/v1/ido/status

Returns current IDO sale status.

{
  "status": "live",
  "totalRaised": "450000",
  "softCap": "250000",
  "hardCap": "1000000"
}
GET /api/v1/token/info

Returns token name, symbol, supply and network details.

{
  "name": "Replex Token",
  "symbol": "RPLX",
  "network": "BNB Smart Chain",
  "totalSupply": "1000000000"
}
GET /api/v1/wallet/{address}

Returns wallet contribution and claim status.

{
  "wallet": "0x123...",
  "contribution": "500",
  "tokens": "50000",
  "claimStatus": "pending"
}
POST /api/v1/subscribe

Subscribe user email for IDO updates.

{
  "email": "user@example.com"
}

Error Codes

Code Message Reason
400 Bad Request Invalid request data
401 Unauthorized Invalid API key
404 Not Found Endpoint not found
429 Too Many Requests Rate limit exceeded

Rate Limit

Default API rate limit is 100 requests per minute. Higher limits can be enabled for verified partners.