AIXBT Docs

Get Project

Returns a project by ID, including the 10 most recent signals, full coingeckoData, and popularityScore.

GET
/v2/projects/{id}

Path Parameters

id*string

MongoDB ObjectId of the project

Query Parameters

signalSortBy?string

Sort embedded signals by last reinforced date or original detection date

Default"reinforcedAt"
Value in"reinforcedAt" | "detectedAt"

Response Body

application/json

curl -X GET "https://api.aixbt.tech/v2/projects/string"
{
  "status": 200,
  "meta": {
    "tier": "free",
    "dataDelayHours": 12,
    "dataAsOf": "2019-08-24T14:15:22Z",
    "upgrade": {
      "description": "string",
      "protocol": "x402",
      "payment": "USDC on Base",
      "options": [
        {
          "period": "1 day",
          "price": "$0.1",
          "method": "POST",
          "url": "https://api.aixbt.tech/x402/v2/api-keys/1d"
        }
      ]
    }
  },
  "error": "",
  "data": {
    "id": "507f1f77bcf86cd799439011",
    "name": "ethereum",
    "description": "string",
    "rationale": "string",
    "xHandle": "ethereum",
    "momentumScore": 0.85,
    "scoreDelta": 0,
    "popularityScore": 18,
    "coingeckoData": {
      "apiId": "ethereum",
      "type": "coin",
      "symbol": "eth",
      "slug": "string",
      "description": "string",
      "homepage": "string",
      "contractAddress": "string",
      "categories": [
        "string"
      ]
    },
    "metrics": {
      "usd": 0,
      "usdMarketCap": 0,
      "usd24hVol": 0,
      "usd24hChange": 0,
      "lastUpdatedAt": 0
    },
    "tokens": [
      {
        "chain": "string",
        "address": "string",
        "source": "string"
      }
    ],
    "createdAt": "2019-08-24T14:15:22Z",
    "updatedAt": "2019-08-24T14:15:22Z",
    "reinforcedAt": "2019-08-24T14:15:22Z",
    "signals": [
      {
        "id": "string",
        "date": "2019-08-24T14:15:22Z",
        "reinforcedAt": "2019-08-24T14:15:22Z",
        "description": "string",
        "projectName": "string",
        "projectId": "string",
        "category": "string",
        "clusters": [
          {
            "id": "string",
            "name": "string"
          }
        ],
        "activity": [
          {
            "date": "2019-08-24T14:15:22Z",
            "source": "string",
            "cluster": {
              "id": "string",
              "name": "string"
            },
            "incoming": "string",
            "result": "string",
            "fromSignal": {
              "signalId": "string",
              "projectId": "string",
              "projectName": "string"
            }
          }
        ]
      }
    ]
  }
}
Empty
Empty