> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tensorlake.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Runtime Info

> Retrieve sandbox daemon version, uptime, and process counts.

Get sandbox daemon metadata and process counts.

## Endpoint

```http theme={null}
GET /api/v1/info
```

Use this endpoint on the sandbox proxy host:

```text theme={null}
https://<sandbox-id-or-name>.sandbox.tensorlake.ai/api/v1/info
```

## Example Request

```bash theme={null}
curl https://<sandbox-id>.sandbox.tensorlake.ai/api/v1/info \
  -H "Authorization: Bearer $TENSORLAKE_API_KEY"
```

## Response

Tensorlake returns `200 OK`:

```json theme={null}
{
  "version": "0.1.0",
  "uptime_secs": 3600,
  "running_processes": 2,
  "total_processes": 5
}
```


## OpenAPI

````yaml get /api/v1/info
openapi: 3.1.0
info:
  title: Tensorlake API
  description: >-
    Tensorlake Cloud APIs for Sandboxes, Document Ingestion, and Serverless
    Workflows
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://api.tensorlake.ai/
security:
  - bearerAuth: []
tags:
  - name: Tensorlake Cloud API
    description: >-
      Tensorlake Cloud APIs for Sandboxes, Document Ingestion, and Serverless
      Workflows
paths:
  /api/v1/info:
    servers:
      - url: https://{identifier}.sandbox.tensorlake.ai
        description: >-
          Example sandbox proxy host for a specific running sandbox. For
          programmatic access, use the sandbox's `ingress_endpoint`.
        variables:
          identifier:
            default: example-sandbox
            description: The sandbox ID or sandbox name.
    get:
      tags:
        - sandbox-runtime
      summary: Runtime info
      description: Retrieve sandbox daemon version, uptime, and process counts.
      operationId: sandbox_runtime_info
      responses:
        '200':
          description: Sandbox daemon metadata
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SandboxRuntimeInfo'
components:
  schemas:
    SandboxRuntimeInfo:
      type: object
      required:
        - version
        - uptime_secs
        - running_processes
        - total_processes
      properties:
        version:
          type: string
        uptime_secs:
          type: integer
          format: int64
        running_processes:
          type: integer
          format: int32
        total_processes:
          type: integer
          format: int32
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````