Silicon Carbon™ API
Carbon
POST /api/data-hub/carbon/gpu-carbon-intensity
Calculate carbon intensity of GPU.
Authorization
🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token
Request Body
The request body must be in application/json
format.
Field | Type | Required | Description | Constraints |
---|---|---|---|---|
gpu_slug | string | No | GPU slug | |
gpu_name | string | No | GPU full name. if GPU slug is filled in, full name will be overridden; if GPU slug is not provided, full name shall be required | |
hours_used | string | Yes | GPU used in hours, should be greater then 0 | > 0 |
zipcode | string | Yes | Zip code of data center | |
country_code | string | Yes | County code of data center, represented in ISO 3166-1 alpha 2, e.g., ‘US’ representing United States |
Request Example
Responses
- 200: Successful Response
- 422: Validation Error
POST /api/data-hub/carbon/batch/gpu-carbon-intensity
Batch query carbon intensity of GPUs.
Authorization
🔒OAuth2: OAuth2PasswordBearer
Flow type: password
Token URL: token
Request Body
The request body must be in application/json
format.
Field | Type | Required | Description | Constraints |
---|---|---|---|---|
data | Array | No | List of the GPU carbon intensity querying arguments |
data (Array)
Field | Type | Required | Description | Constraints |
---|---|---|---|---|
gpu_slug | string | No | GPU Slug, if gpu_name is None, this field should be fulled in | |
gpu_name | string | No | GPU Name, if gpu_slug is filled in, this field will be overridden; If gpu_slug is None, this field is required | |
hours_used | string | Yes | GPU used in hours, should be greater then 0 | > 0 |
zipcode | string | Yes | Zipcode of data center | |
country_code | string | Yes | Country code of data center, represented in ISO 3166-1 alpha 2, e.g., ‘US’ standing for United States |
Request Example
Responses
- 200: Successful Response
- 422: Validation Error