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

# List agents

> Lists non-deleted agents for the org, newest first.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/agents
openapi: 3.1.0
info:
  title: Sidenet API
  version: 1.0.0
  description: >-
    Sidenet HTTP endpoints exposed by the Sidenet Studio. All routes require an
    api key that can be generated through the studio in studio.sidenet.ai.
servers:
  - url: https://api.sidenet.ai
security:
  - bearerAuth: []
paths:
  /v1/agents:
    get:
      tags:
        - Agents
      summary: List agents
      description: Lists non-deleted agents for the org, newest first.
      parameters: []
      responses:
        '200':
          description: Every agent in the organization, newest first
          content:
            application/json:
              schema:
                type: object
                properties:
                  agents:
                    type: array
                    description: >-
                      The records only — no version config. Fetch one with GET
                      /v1/agents/{id} for its instructions, model and tools.
                    items:
                      type: object
                      properties:
                        id:
                          type: string
                          format: uuid
                        name:
                          type: string
                        description:
                          type: string
                          nullable: true
                        active_version_id:
                          type: string
                          format: uuid
                          nullable: true
                          description: Null until a published version is activated.
                        created_at:
                          type: string
                          format: date-time
                        updated_at:
                          type: string
                          format: date-time
              example:
                agents:
                  - id: 6f1c0f4e-2b7a-4a51-9a2f-0c9d1b3e5a10
                    name: Support agent
                    description: Answers billing and account questions
                    active_version_id: b3f7a2c8-5d19-4e6b-8f02-1a4c9e7d3b55
                    created_at: '2026-07-02T09:14:22.418Z'
                    updated_at: '2026-08-11T16:03:47.902Z'
        '400':
          description: Missing headers
      security:
        - bearerAuth: []
        - sessionToken: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: >-
        Organization API key, generated in studio.sidenet.ai. Backend only —
        never in a browser.
    sessionToken:
      type: http
      scheme: bearer
      description: >-
        Session token (`snat_…`) minted by POST /v1/token. Carries the
        organization and the end user; safe in a browser.

````