AIXBT Docs

Momentum History

Returns hourly momentum history with cluster breakdown. Includes tweet counts by cluster and score history for a project over a specified time period. Default period is the last 7 days.

GET
/v2/projects/{id}/momentum

Authorization

ApiKeyAuth
x-api-key<token>

API key to authorize requests

In: header

Path Parameters

id*string

The project ID

Query Parameters

start?string

Start timestamp (ISO 8601 format). Defaults to 7 days ago.

Formatdate-time
end?string

End timestamp (ISO 8601 format). Defaults to now.

Formatdate-time

Response Body

application/json

curl -X GET "https://api.aixbt.tech/v2/projects/string/momentum?start=2025-11-21T00%3A00%3A00.000Z&end=2025-11-28T00%3A00%3A00.000Z"
{
  "status": 200,
  "error": "",
  "data": {
    "projectId": "507f1f77bcf86cd799439011",
    "projectName": "ethereum",
    "data": [
      {
        "timestamp": "2025-11-30T12:00:00.000Z",
        "momentumScore": 0.43,
        "clusters": [
          {
            "id": "67ffa0cdd37b7e33fb723561",
            "name": "ethereum",
            "count": 3
          }
        ]
      }
    ]
  }
}
Empty
Empty
Empty