Skip to main content
GET
/
compute
/
runtimes
Get runtimes
curl --request GET \
  --url https://api.quiva.ai/compute/runtimes \
  --header 'Authorization: Bearer <token>'
{
  "body": {
    "results": [
      {
        "name": "nodejs",
        "version": "18.x",
        "description": "Node.js Runtime"
      },
      {
        "name": "python",
        "version": "3.10",
        "description": "Python Runtime"
      },
      {
        "name": "docker",
        "version": "latest",
        "description": "Docker Runtime"
      }
    ],
    "results_total": 3
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

A list of available runtimes

body
object