AIXBT Docs

Get Project

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

GET
/v2/projects/{id}

Authorization

ApiKeyAuth
x-api-key<token>

API key to authorize requests

In: header

Path Parameters

id*string

MongoDB ObjectId of the project

Response Body

application/json

curl -X GET "https://api.aixbt.tech/v2/projects/string"
{
  "status": 200,
  "error": "",
  "data": {
    "id": "507f1f77bcf86cd799439011",
    "name": "ethereum",
    "description": "string",
    "rationale": "string",
    "xHandle": "ethereum",
    "momentumScore": 0.85,
    "popularityScore": 18,
    "coingeckoData": {
      "apiId": "ethereum",
      "type": "coin",
      "symbol": "eth",
      "slug": "string",
      "description": "string",
      "homepage": "string",
      "contractAddress": "string",
      "categories": [
        "string"
      ]
    },
    "tokens": {
      "property1": "string",
      "property2": "string"
    },
    "signals": [
      {
        "id": "string",
        "date": "2019-08-24T14:15:22Z",
        "reinforcedAt": "2019-08-24T14:15:22Z",
        "description": "string",
        "projectName": "string",
        "projectId": "string",
        "category": "string",
        "officialSources": [
          "string"
        ],
        "clusters": [
          {
            "id": "string",
            "name": "string"
          }
        ]
      }
    ]
  }
}
Empty
Empty