Code Interpreter
Sandbox apiOperationsRuntimes

List installed runtimes

GET
/runtimes

Runtimes are discovered from SANDBOX_PACKAGES_DIRECTORY at startup, the volume the package_init job populates. Which languages appear depends on CODEAPI_LANGUAGES at deploy time.

Response Body

application/json

curl -X GET "https://example.com/runtimes"
[  {    "language": "python",    "version": "3.14.4",    "aliases": [      "py",      "python3"    ],    "runtime": "string"  }]