POST /api/price-iq/predict

Get predict price and percentile data.

Authorization

🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
gpu_namestringNo
typestringYes
geolocationstringYes
cpu_platformstringYes
cpu_cores_effectivestringYes
cpu_ram_gbstringYes
rm_gbstringYes

Request Example

{
  "gpu_name": "string",
  "type": 0,
  "geolocation": "string",
  "cpu_platform": "string",
  "cpu_cores_effective": 16,
  "cpu_ram_gb": 36,
  "ram_gb": 40
}

Responses

  • 200: Successful Response
null
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
        ],
        "msg": "string",
        "type": "string"
    }
  ]
}

GET /api/price-iq/specs-list

Get all support GPU type, geolocation, cpu_platform and price_type list.

Parameters

Authorization

🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token

Responses

  • 200: Successful Response
null
  • 422: Validation Error
{
  "detail": [
    {
      "loc": [
        "string"
        ],
        "msg": "string",
        "type": "string"
    }
  ]
}