Every API here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for apis
7 MCP tools reach this
find_apisBrowse and filter every API in the catalog.
get_api_artifactsOne API's artifacts, grouped by type.
get_openapiThe primary OpenAPI for this API.
find_similar_apisAPIs that look like this one.
apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
resolveTurn a domain, URL or GitHub org into the provider it belongs to.
find_cohortsEvery scored population of providers in the catalog.
All 92 tools →
Call it yourself
curl for this page
This API
curl "https://apis.io/api/v1/apis/runloop-ai-devbox-lifecycle-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we
store it to create your key and to recognise you if you sign in with another
provider. See our Privacy Policy and
Terms.
A second provider on the same verified email joins the account you already have.
openapi: 3.2.0
info:
title: Runloop agents Devbox Lifecycle API
version: '0.1'
description: Register, version, and mount Agents — packaged agent definitions sourced from Git, npm, pip, or storage objects that can be installed on Devboxes for fast, reproducible agent execution.
contact:
name: Runloop AI Support
url: https://runloop.ai
email: support@runloop.ai
servers:
- url: https://api.runloop.ai
description: Runloop API
variables: {}
security:
- bearerAuth: []
tags:
- name: Devbox-Lifecycle
paths:
/v1/devboxes:
post:
tags:
- Devbox-Lifecycle
summary: Create a Devbox.
description: Create a Devbox and begin the boot process. The Devbox will initially launch in the 'provisioning' state while Runloop allocates the necessary infrastructure. It will transition to the 'initializing' state while the booted Devbox runs any Runloop or user defined set up scripts. Finally, the Devbox will transition to the 'running' state when it is ready for use.
operationId: createDevbox
parameters: []
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DevboxCreateParameters'
required: false
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DevboxView'
deprecated: false
/v1/devboxes/{id}:
post:
tags:
- Devbox-Lifecycle
summary: Update a Devbox.
description: Updates a devbox by doing a complete update the existing name,metadata fields. It does not patch partial values.
operationId: updateDevbox
parameters:
- name: id
in: path
description: The Devbox ID.
required: true
deprecated: false
allowEmptyValue: false
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DevboxUpdateParameters'
required: false
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DevboxView'
deprecated: false
get:
tags:
- Devbox-Lifecycle
summary: Get Devbox details.
description: Get the latest details and status of a Devbox.
operationId: getDevbox
parameters:
- name: id
in: path
description: The Devbox ID.
required: true
deprecated: false
allowEmptyValue: false
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DevboxView'
deprecated: false
/v1/devboxes/{id}/keep_alive:
post:
tags:
- Devbox-Lifecycle
summary: Reset the idle timer of a running Devbox.
description: Send a 'Keep Alive' signal to a running Devbox that is configured to shutdown on idle so the idle time resets.
operationId: keepAliveDevbox
parameters:
- name: id
in: path
description: The Devbox ID.
required: true
deprecated: false
allowEmptyValue: false
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/EmptyRecord'
deprecated: false
/v1/devboxes/{id}/resume:
post:
tags:
- Devbox-Lifecycle
summary: Resume a suspended Devbox
description: Resume a suspended Devbox with the disk state captured as suspend time. Note that any previously running processes or daemons will need to be restarted using the Devbox shell tools.
operationId: resumeDevbox
parameters:
- name: id
in: path
description: The Devbox ID.
required: true
deprecated: false
allowEmptyValue: false
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DevboxView'
'400':
description: Devbox is not suspended.
'404':
description: Devbox not found.
deprecated: false
/v1/devboxes/{id}/shutdown:
post:
tags:
- Devbox-Lifecycle
summary: Shutdown a running Devbox.
description: Shutdown a running Devbox. This will permanently stop the Devbox. If you want to save the state of the Devbox, you should take a snapshot before shutting down or should suspend the Devbox instead of shutting down. If the Devbox has any in-progress snapshots, the shutdown will be rejected with a 409 Conflict unless force=true is specified.
operationId: shutdownDevbox
parameters:
- name: id
in: path
description: The Devbox ID.
required: true
deprecated: false
allowEmptyValue: false
schema:
type: string
- name: force
in: query
description: If true, force shutdown even if snapshots are in progress. Defaults to false.
required: false
deprecated: false
allowEmptyValue: false
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DevboxView'
'409':
description: Devbox has in-progress snapshots and cannot be shut down at this time. Use force=true to override.
deprecated: false
/v1/devboxes/{id}/suspend:
post:
tags:
- Devbox-Lifecycle
summary: Suspend a running Devbox
description: Suspend a running Devbox and create a disk snapshot to enable resuming the Devbox later with the same disk. Note this will not snapshot memory state such as running processes.
operationId: suspendDevbox
parameters:
- name: id
in: path
description: The Devbox ID.
required: true
deprecated: false
allowEmptyValue: false
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DevboxView'
'400':
description: Devbox is not running.
'404':
description: Devbox not found.
deprecated: false
/v1/devboxes/{id}/wait_for_status:
post:
tags:
- Devbox-Lifecycle
summary: Wait for a Devbox to reach one of the specified statuses.
description: Polls the Devbox's status until it reaches one of the desired statuses or times out.
operationId: waitForDevboxStatus
parameters:
- name: id
in: path
description: The Devbox ID.
required: true
deprecated: false
allowEmptyValue: false
schema:
type: string
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/DevboxWaitForStatusRequest'
required: false
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/DevboxView'
'400':
description: Invalid status provided.
'404':
description: Devbox not found.
'408':
description: Timeout waiting for status.
deprecated: false
components:
schemas:
DevboxViewStatus:
type: string
enum:
- provisioning
- initializing
- running
- suspending
- suspended
- resuming
- failure
- shutdown
description: 'The status of the Devbox.
provisioning: Runloop is allocating and booting the necessary infrastructure resources.
initializing: Runloop defined boot scripts are running to enable the environment for interaction.
running: The Devbox is ready for interaction.
suspending: The Devbox disk is being snapshotted as part of suspension.
suspended: The Devbox disk is saved and no more active compute is being used for the Devbox.
resuming: The Devbox disk is being loaded as part of booting a suspended Devbox.
failure: The Devbox failed as part of booting or running user requested actions.
shutdown: The Devbox was successfully shutdown and no more active compute is being used.
'
x-enum-descriptions:
provisioning: Runloop is allocating and booting the necessary infrastructure resources.
initializing: Runloop defined boot scripts are running to enable the environment for interaction.
running: The Devbox is ready for interaction.
suspending: The Devbox disk is being snapshotted as part of suspension.
suspended: The Devbox disk is saved and no more active compute is being used for the Devbox.
resuming: The Devbox disk is being loaded as part of booting a suspended Devbox.
failure: The Devbox failed as part of booting or running user requested actions.
shutdown: The Devbox was successfully shutdown and no more active compute is being used.
DevboxViewFailureReason:
type: string
enum:
- out_of_memory
- out_of_disk
- execution_failed
- health_check_failed
description: 'The category of failure experienced by the Devbox.
out_of_memory: The Devbox ran out of memory at runtime. Use launch parameters to request a larger resource size.
out_of_disk: The Devbox ran out of disk at runtime. Please reach out to support for us to better support your use case.
execution_failed: The Devbox failed at runtime. Please use the dashboard to look at the logs of the failure.
health_check_failed: The Devbox failed its health checks. This may indicate resource utilization is close to the maximum. Consider requesting a larger resource size.
'
x-enum-descriptions:
out_of_memory: The Devbox ran out of memory at runtime. Use launch parameters to request a larger resource size.
out_of_disk: The Devbox ran out of disk at runtime. Please reach out to support for us to better support your use case.
execution_failed: The Devbox failed at runtime. Please use the dashboard to look at the logs of the failure.
health_check_failed: The Devbox failed its health checks. This may indicate resource utilization is close to the maximum. Consider requesting a larger resource size.
BrokerMount:
type: object
additionalProperties: false
properties:
axon_id:
type: string
description: The ID of the axon event stream to mount onto the Devbox.
protocol:
$ref: '#/components/schemas/BrokerMountProtocol'
description: The protocol used by the broker to deliver events to the agent.
agent_binary:
type:
- string
- 'null'
description: Binary to launch the agent (e.g., 'opencode'). Used by protocols that launch a subprocess (acp, claude_json).
working_directory:
type:
- string
- 'null'
description: Working directory in which to launch the agent binary. Defaults to the home directory if not specified.
launch_args:
type:
- array
- 'null'
items:
type: string
description: Arguments to pass to the agent command (e.g., ['acp']). Used by protocols that launch a subprocess (acp, claude_json).
type:
type: string
enum:
- broker_mount
default: broker_mount
required:
- axon_id
- type
LaunchParameters:
type: object
additionalProperties: false
description: LaunchParameters enable you to customize the resources available to your Devbox as well as the environment set up that should be completed before the Devbox is marked as 'running'.
properties:
launch_commands:
type:
- array
- 'null'
items:
type: string
description: Set of commands to be run at launch time, before the entrypoint process is run.
resource_size_request:
$ref: '#/components/schemas/ResourceSize'
description: 'Preset Devbox resources (vCPU, RAM in GiB, ephemeral disk in GiB). If not set, SMALL is used. X_SMALL: 0.5 vCPU, 1 GiB RAM, 4 GiB disk. SMALL: 1 vCPU, 2 GiB RAM, 4 GiB disk. MEDIUM: 2 vCPU, 4 GiB RAM, 8 GiB disk. LARGE: 2 vCPU, 8 GiB RAM, 16 GiB disk. X_LARGE: 4 vCPU, 16 GiB RAM, 16 GiB disk. XX_LARGE: 8 vCPU, 32 GiB RAM, 16 GiB disk. CUSTOM_SIZE: set custom_cpu_cores, custom_gb_memory, and optionally custom_disk_size.'
available_ports:
type:
- array
- 'null'
items:
type: integer
format: int32
description: '[Deprecated] A list of ports to make available on the Devbox. This field is ignored.'
keep_alive_time_seconds:
type:
- integer
- 'null'
format: int64
description: Time in seconds after which Devbox will automatically shutdown. Default is 1 hour. Maximum is 48 hours (172800 seconds).
after_idle:
$ref: '#/components/schemas/IdleConfigurationParameters'
description: Configure Devbox lifecycle based on idle activity. If after_idle is set, Devbox will ignore keep_alive_time_seconds. If both after_idle and lifecycle.after_idle are set, they must have the same value. Use lifecycle.after_idle instead.
custom_cpu_cores:
type:
- integer
- 'null'
format: int32
description: Custom CPU cores. Must be 0.5, 1, or a multiple of 2. Max is 16.
custom_gb_memory:
type:
- integer
- 'null'
format: int32
description: Custom memory size in GiB. Must be 1 or a multiple of 2. Max is 64GiB.
custom_disk_size:
type:
- integer
- 'null'
format: int32
description: Custom disk size in GiB. Must be a multiple of 2. Min is 2GiB, max is 64GiB.
architecture:
$ref: '#/components/schemas/Architecture'
description: The target architecture for the Devbox. If unset, defaults to x86_64.
user_parameters:
$ref: '#/components/schemas/UserParameters'
description: Specify the user for execution on Devbox. If not set, default `user` will be used.
required_services:
type:
- array
- 'null'
items:
type: string
description: A list of ContainerizedService names to be started when a Devbox is created. A valid ContainerizedService must be specified in Blueprint to be started.
network_policy_id:
type:
- string
- 'null'
description: (Optional) ID of the network policy to apply to Devboxes launched with these parameters. When set on a Blueprint launch parameters, Devboxes created from it will inherit this policy unless explicitly overridden.
lifecycle:
$ref: '#/components/schemas/LifecycleConfigurationParameters'
description: Lifecycle configuration for idle and resume behavior. Configure idle policy via lifecycle.after_idle (if both this and the top-level after_idle are set, they must match) and resume triggers via lifecycle.resume_triggers.
McpSpecView:
type: object
additionalProperties: false
properties:
mcp_config_id:
type: string
description: The ID of the MCP config (e.g., mcp_123abc).
secret_id:
type: string
description: The ID of the secret containing the credential.
required:
- mcp_config_id
- secret_id
FileMount:
type: object
additionalProperties: false
properties:
target:
type: string
description: Target path where the file should be mounted.
content:
type: string
description: Content of the file to mount.
type:
type: string
enum:
- file_mount
default: file_mount
required:
- target
- content
- type
GatewaySpec:
type: object
additionalProperties: false
description: GatewaySpec links an agent gateway configuration to a secret for credential proxying in a devbox. The agent gateway will proxy requests to external APIs using the specified credential without exposing the real API key.
properties:
gateway:
type: string
description: The gateway config to use. Can be a gateway config ID (gwc_xxx) or name.
secret:
type: string
description: The secret containing the credential. Can be a secret ID or name.
required:
- gateway
- secret
LifecycleConfigurationParameters:
type: object
additionalProperties: false
description: Lifecycle configuration for Devbox idle and resume behavior. Configure idle policy via after_idle and resume triggers via resume_triggers.
properties:
after_idle:
$ref: '#/components/schemas/IdleConfigurationParameters'
description: Configure Devbox lifecycle based on idle activity. If both this and the top-level after_idle are set, they must have the same value. Prefer this field for new integrations.
resume_triggers:
$ref: '#/components/schemas/ResumeTriggers'
description: Triggers that can resume a suspended Devbox.
TunnelAuthModeView:
type: string
enum:
- open
- authenticated
AgentMount:
type: object
additionalProperties: false
properties:
agent_id:
type:
- string
- 'null'
description: The ID of the agent to mount. Either agent_id or name must be set.
agent_name:
type:
- string
- 'null'
description: The name of the agent to mount. Returns the most recent agent with a matching name if no agent id string provided. Either agent id or name must be set
agent_path:
type:
- string
- 'null'
description: Path to mount the agent on the Devbox. Required for git and object agents. Use absolute path (e.g., /home/user/agent)
auth_token:
type:
- string
- 'null'
description: Optional auth token for private repositories. Only used for git agents.
type:
type: string
enum:
- agent_mount
default: agent_mount
required:
- agent_id
- agent_name
- type
IdleConfigurationParameters:
type: object
additionalProperties: false
properties:
idle_time_seconds:
type: integer
format: int32
description: After idle_time_seconds, on_idle action will be taken.
on_idle:
$ref: '#/components/schemas/IdleAction'
description: Action to take after Devbox becomes idle.
required:
- idle_time_seconds
- on_idle
Number:
type: object
additionalProperties: false
properties: {}
CodeMount:
type: object
additionalProperties: false
properties:
repo_name:
type: string
description: The name of the repo to mount. By default, code will be mounted at /home/user/{repo_name}.
repo_owner:
type: string
description: The owner of the repo.
install_command:
type:
- string
- 'null'
description: Installation command to install and setup repository.
git_ref:
type:
- string
- 'null'
description: Optional git ref (branch or tag) to checkout. Defaults to the repository default branch.
token:
type:
- string
- 'null'
description: The authentication token necessary to pull repo.
type:
type: string
enum:
- code_mount
default: code_mount
required:
- repo_name
- repo_owner
- type
EmptyRecord:
type: object
additionalProperties: false
properties: {}
Mount:
oneOf:
- $ref: '#/components/schemas/ObjectMount'
- $ref: '#/components/schemas/AgentMount'
- $ref: '#/components/schemas/CodeMount'
- $ref: '#/components/schemas/FileMount'
- $ref: '#/components/schemas/BrokerMount'
discriminator:
propertyName: type
mapping:
object_mount: '#/components/schemas/ObjectMount'
agent_mount: '#/components/schemas/AgentMount'
code_mount: '#/components/schemas/CodeMount'
file_mount: '#/components/schemas/FileMount'
broker_mount: '#/components/schemas/BrokerMount'
TunnelConfig:
type: object
additionalProperties: false
description: Configuration for creating a V2 tunnel. When specified at Devbox creation, a tunnel will be automatically provisioned.
properties:
auth_mode:
$ref: '#/components/schemas/TunnelAuthMode'
description: Authentication mode for the tunnel. Defaults to 'public' if not specified.
http_keep_alive:
type:
- boolean
- 'null'
description: When true, HTTP traffic through the tunnel counts as activity for idle lifecycle policies, resetting the idle timer. Defaults to true if not specified.
wake_on_http:
type:
- boolean
- 'null'
description: When true, HTTP traffic to a suspended devbox will automatically trigger a resume. Defaults to false if not specified. Prefer lifecycle.resume_triggers.http on launch_parameters for new integrations. If both are set, lifecycle.resume_triggers.http takes precedence.
GatewaySpecView:
type: object
additionalProperties: false
properties:
gateway_config_id:
type: string
description: The ID of the gateway config (e.g., gwc_123abc).
secret_id:
type: string
description: The ID of the secret containing the credential.
required:
- gateway_config_id
- secret_id
TunnelAuthMode:
type: string
enum:
- open
- authenticated
DevboxWaitForStatusRequest:
type: object
additionalProperties: false
properties:
statuses:
type: array
items:
$ref: '#/components/schemas/DevboxViewStatus'
description: The Devbox statuses to wait for. At least one status must be provided. The devbox will be returned as soon as it reaches any of the provided statuses.
timeout_seconds:
type:
- integer
- 'null'
format: int32
description: (Optional) Timeout in seconds to wait for the status, up to 30 seconds. Defaults to 10 seconds.
required:
- statuses
DevboxCapabilities:
type: string
enum:
- unknown
- docker_in_docker
InitiatorType:
type: string
enum:
- unknown
- api
- scenario
- scoring_validation
IdleAction:
type: string
enum:
- shutdown
- suspend
description: 'Action to take after Devbox idle timer is triggered.
shutdown: Shutdown the Devbox.
suspend: Suspend the Devbox.
'
x-enum-descriptions:
shutdown: Shutdown the Devbox.
suspend: Suspend the Devbox.
DevboxCreateParameters:
type: object
additionalProperties: false
properties:
name:
type:
- string
- 'null'
description: (Optional) A user specified name to give the Devbox.
environment_variables:
type:
- object
- 'null'
additionalProperties:
type: string
description: (Optional) Environment variables used to configure your Devbox.
secrets:
type:
- object
- 'null'
additionalProperties:
type: string
description: '(Optional) Map of environment variable names to secret names. The secret values will be securely injected as environment variables in the Devbox. Example: {"DB_PASS": "DATABASE_PASSWORD"} sets environment variable ''DB_PASS'' to the value of secret ''DATABASE_PASSWORD''.'
file_mounts:
type:
- object
- 'null'
additionalProperties:
type: string
description: Map of paths and file contents to write before setup. Use mounts instead.
entrypoint:
type:
- string
- 'null'
description: (Optional) When specified, the Devbox will run this script as its main executable. The devbox lifecycle will be bound to entrypoint, shutting down when the process is complete.
blueprint_id:
type:
- string
- 'null'
description: Blueprint ID to use for the Devbox. If none set, the Devbox will be created with the default Runloop Devbox image. Only one of (Snapshot ID, Blueprint ID, Blueprint name) should be specified.
blueprint_name:
type:
- string
- 'null'
description: Name of Blueprint to use for the Devbox. When set, this will load the latest successfully built Blueprint with the given name. Only one of (Snapshot ID, Blueprint ID, Blueprint name) should be specified.
repo_connection_id:
type:
- string
- 'null'
description: Repository connection id the devbox should source its base image from.
launch_parameters:
$ref: '#/components/schemas/LaunchParameters'
description: Parameters to configure the resources and launch time behavior of the Devbox.
snapshot_id:
type:
- string
- 'null'
description: Snapshot ID to use for the Devbox. Only one of (Snapshot ID, Blueprint ID, Blueprint name) should be specified.
metadata:
type:
- object
- 'null'
additionalProperties:
type: string
description: User defined metadata to attach to the devbox for organization.
code_mounts:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/CodeMountParameters'
description: A list of code mounts to be included in the Devbox. Use mounts instead.
mounts:
type:
- array
- 'null'
items:
$ref: '#/components/schemas/Mount'
description: A list of mounts to be included in the Devbox.
tunnel:
$ref: '#/components/schemas/TunnelConfig'
description: (Optional) Configuration for creating a V2 tunnel at Devbox launch time. When specified, a tunnel will be automatically provisioned and the tunnel details will be included in the Devbox response.
gateways:
type:
- object
- 'null'
additionalProperties:
$ref: '#/components/schemas/GatewaySpec'
description: '(Optional) Agent gateway specifications for credential proxying. Map key is the environment variable prefix (e.g., ''GWS_ANTHROPIC''). The agent gateway will proxy requests to external APIs using the specified credential without exposing the real API key. Example: {''GWS_ANTHROPIC'': {''gateway'': ''anthropic'', ''secret'': ''my_claude_key''}}'
mcp:
type:
- object
- 'null'
additionalProperties:
$ref: '#/components/schemas/McpSpec'
description: '[Beta] (Optional) MCP specifications for MCP server access. Map key is the environment variable name for the MCP token envelope. Each spec links an MCP config to a secret. The devbox will also receive RL_MCP_URL for the MCP hub endpoint. Example: {''MCP_SECRET'': {''mcp_config'': ''github-readonly'', ''secret'': ''MY_GITHUB_TOKEN''}}'
DevboxViewShutdownReason:
type: string
enum:
- api_shutdown
- keep_alive_timeout
- entrypoint_exit
- idle
- ttl_expired
description: 'The reason that caused the transition of the Devbox to the shutown state.
api_shutdown: The Devbox shutdown due to API request.
entrypoint_exit: The Devbox entrypoint program completed.
idle: The Devbox shutdown due to configured action on idle configuration.
ttl_expired: The Devbox shutdown due to TTL expiration.
'
x-enum-descriptions:
api_shutdown: The Devbox shutdown due to API request.
entrypoint_exit: The Devbox entrypoint program completed.
idle: The Devbox shutdown due to configured action on idle configuration.
ttl_expired: The Devbox shutdown due to TTL expiration.
McpSpec:
type: object
additionalProperties: false
description: '[Beta] McpSpec links an MCP configuration to a secret for MCP server access in a devbox. The MCP hub will proxy requests to upstream MCP servers using the specified credential, with tool-level access control based on the MCP config''s allowed_tools.'
properties:
mcp_config:
type: string
description: The MCP config to use. Can be an MCP config ID (mcp_xxx) or name.
secret:
type: string
description: The secret containing the MCP server credential. Can be a secret ID or name.
required:
- mcp_config
- secret
CodeMountParameters:
type: object
additionalProperties: false
properties:
repo_name:
type: string
description: The name of the repo to mount. By default, code will be mounted at /home/user/{repo_name}.
repo_owner:
type: string
description: The owner of the repo.
install_command:
type:
- string
- 'null'
description: Installation command to install and setup repository.
git_ref:
type:
- string
- 'null'
description: Optional git ref (branch or tag) to checkout. Defaults to the repository default branch.
token:
type:
- string
- 'null'
description: The authentication token necessary to pull repo.
required:
- repo_name
- repo_owner
DevboxView:
type: object
additionalProperties: false
description: A Devbox represents a virtual development environment. It is an isolated sandbox that can be given to agents and used to run arbitrary code such as AI generated code.
properties:
id:
type: string
description: The ID of the Devbox.
name:
type:
- string
- 'null'
description: The name of the Devbox.
status:
$ref: '#/components/schemas/DevboxViewStatus'
description: The current status of the Devbox.
create_time_ms:
type: integer
format: int64
description: Creation time of the Devbox (Unix timestamp milliseconds).
end_time_ms:
type:
- integer
- 'null'
format: int64
description: The time the Devbox finished execution (Unix timestamp milliseconds). Present if the Devbox is in a terminal state.
initiator_type:
$ref: '#/components/schemas/InitiatorType'
description: The type of initiator that created the Devbox.
initiator_id:
type:
- string
- 'null'
description: The ID of the initiator that created the Devbox.
blueprint_id:
type:
- string
- 'null'
description: The Blueprint ID used in creation of the Devbox, if the devbox was created from a Blueprint.
snapshot_id:
type:
- string
- 'null'
description: The Snapshot ID used in creation of the Devbox, if the devbox was created from a Snapshot.
metadata:
type: object
add
# --- truncated at 32 KB (39 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/runloop-ai/refs/heads/main/openapi/runloop-ai-devbox-lifecycle-api-openapi.yml