POST /api/data-hub/gpu/specs-list

Get all GPU product IDS from the specs list.

Authorization

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

Responses

  • 200: Successful Response
null

POST /api/data-hub/gpu/specs-query

Get GPU product IDS by searching condition from the specs list.

Authorization

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

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
num_per_pagestringNoHow many records will be return per one page, value score in 1 to 100,default value is 50[ 1 .. 100 ]
page_numstringNoThe page index number, default value is 1>= 1
keywordstringNoKeyword for query conditions which use for search

Request Example

{
  "num_per_page": 50,
  "page_num": 1,
  "keyword": ""
}

Responses

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

POST /api/data-hub/gpu/latest/price

Get GPU latest price.

Authorization

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

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
num_per_pageintegerNoHow many records will be return per one page, value score in 1 to 100,default value is 50[ 1 .. 100 ]
page_numintegerNoThe page index number, default value is 1>= 1
keywordstringNoKeyword for query conditions which use for search
product_idintegerNoProduct id of price history
countrystringNoThe ISO country codes 2-digit string.<= 2 characters
price_typeintegerNoMust be one of the values [-1, 0, 1, 3, 6, 12, 100, 101, 102]. -1: Rental Spot, 0: Rental On-Demand, 1: Rental Reserved 1 month, 3: Rental Reserved 3 month, 6: Rental Reserved 6 month, 12: Rental Reserved 1 year, 100: Retail New, 101: Retail Refurbished, 102: Retail Used

Request Example

{
  "num_per_page": 50,
  "page_num": 1,
  "keyword": "",
  "product_id": 0,
  "country": ""
}

Responses

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

POST /api/data-hub/gpu/history/price

Get GPU history price

Authorization

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

Request Body

The request body must be in application/json format.

FieldTypeRequiredDescriptionConstraints
num_per_pageintegerNoHow many records will be return per one page, value score in 1 to 100,default value is 50[ 1 .. 100 ]
page_numintegerNoThe page index number, default value is 1>= 1
product_idintegerYesProduct id of price history
start_datestringYesPrice from start date,YYYY-MM-DD
end_datestringYesPrice from start date,YYYY-MM-DD
price_typeintegerYesMust be one of the values [-1, 0, 1, 3, 6, 12, 100, 101, 102] -1: Rental Spot, 0: Rental On-Demand, 1: Rental Reserved 1 month, 3: Rental Reserved 3 month, 6: Rental Reserved 6 month, 12: Rental Reserved 1 year, 100: Retail New, 101: Retail Refurbished, 102: Retail Used
countrystringNoThe ISO country codes 2-digit string.<= 2 characters

Request Example

{
  "num_per_page": 50,
  "page_num": 1,
  "product_id": 0,
  "start_date": "2024-10-01",
  "end_date": "2024-10-31",
  "price_type": 0,
  "country": ""
}

Responses

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