Skip to main content
Note: The RAM Index API is only available for Plus and Professional tier subscribers.

POST /api/ram-index/index

Get RAM index data, from starting date (from 2026-01-26) to ending date. If no date range is provided, data for today will be used by default. A returned value of -1 or any negative number indicates that the data has not yet been generated; please wait or contact support.

Authorization

OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token

Request Body

The request body must be in application/json format.
FieldTypeRequiredDescription
ramstringYESThe RAM type or model to query. Currently supported: GDDR6 (case-insensitive).
starting_datestring or nullNOThe start date for the query in YYYY-MM-DD format. Data is available from 2026-01-26.
ending_datestring or nullNOThe end date for the query in YYYY-MM-DD format.

Request Example

{
  "ram": "GDDR6",
  "starting_date": "2026-02-19",
  "ending_date": "2026-02-25"
}

Responses

  • 200: Successful Response
{
  "meta": {
    "code": 0,
    "url": "/api/ram-index/index",
    "message": "OK",
    "timestamp": 1774968508
  },
  "data": {
    "ram": "GDDR6",
    "starting_date": "2026-02-19",
    "ending_date": "2026-02-25",
    "indexes": {
      "2026-02-19": "14.64",
      "2026-02-20": "14.64",
      "2026-02-21": "14.64",
      "2026-02-22": "14.64",
      "2026-02-23": "14.64",
      "2026-02-24": "14.87",
      "2026-02-25": "14.87"
    }
  }
}
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string"
    }
  ]
}
  • 404: Subscription not found
{
  "meta": {
    "code": 404,
    "url": "/api/ram-index",
    "message": "404, Not Found",
    "timestamp": 1774968510
  },
  "data": {}
}