Skip to main content

API Endpoint

POST https://n8n.value8.dev/webhook/scoring-api.ratex.ai

Authentication

Required headers:
X-API-Key: YOUR_API_KEY
Content-Type: application/json

Your First Request

Send a POST request with the required parameters: type, project, and project_url.

Example Request Body

{
  "type": "posttge",
  "project": "LayerZero",
  "project_url": "https://layerzero.network",
  "token_symbol": "ZRO",
  "category": "Omnichain Protocol",
  "blockchain": "Ethereum",
  "output_format": "standard"
}

Quick cURL Example

curl -X POST https://n8n.value8.dev/webhook/scoring-api.ratex.ai \
  -H "X-API-Key: your_key" \
  -H "Content-Type: application/json" \
  -d '{
    "type": "posttge",
    "project": "LayerZero",
    "project_url": "https://layerzero.network",
    "output_format": "minimal"
  }'

Example Minimal Response

{
  "job_id": "posttge_1737123456789_abc123xyz",
  "type": "posttge",
  "project": "LayerZero",
  "rating": {
    "band": "BBB",
    "score": 62
  },
  "trust_score": {
    "score": 85
  },
  "vfr": {
    "value": 0.97,
    "zone": "FAIR"
  },
  "execution_time_seconds": 75
}
No manual data input is required beyond project + project_url. The API automatically collects and cross-validates current public data during each request.

Next Steps

Request Parameters

See all required and optional parameters.

Response Formats

Minimal, standard, and full report formats.

Code Examples

Python, cURL, and JavaScript examples.

Scoring Models

Understand Post-TGE and Pre-TGE analysis.
RateXAI also offers the MetaScore API for real-time score queries and the Chain Data API for indexed on-chain aggregates. See Products & Pricing for the full product suite.