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

# List tools

> List the active tool agents, 50 per page by default (at most 100).


## OpenAPI

```yaml openapi.json get /v1/tools
openapi: 3.1.0
info:
  title: Ocean One API
  version: 2.1.0
servers:
  - url: https://api.plungeai.com
paths:
  /v1/tools:
    get:
      summary: List active tool-agents
      security:
        - ozkBearer: []
      parameters:
        - name: limit
          in: query
          schema:
            type: integer
            default: 50
            maximum: 100
        - name: offset
          in: query
          schema:
            type: integer
            default: 0
      responses:
        "200":
          description: Active tool list
          content:
            application/json:
              schema:
                type: object
                properties:
                  tools:
                    type: array
                    items:
                      $ref: "#/components/schemas/Card"
                  count:
                    type: integer
components:
  schemas:
    Card:
      type: object
      description: Registry capability card (summary fields).
      properties:
        id:
          type: string
        name:
          type: string
        type:
          type: string
        category:
          type: string
        status:
          type: string
        description:
          type: string
        tags:
          type: array
          items:
            type: string
        quality:
          description: Present only when the search was called with include=quality; null when unmeasured (no eval-service binding on this tier, no runs yet, or an upstream miss).
          type:
            - object
            - "null"
          properties:
            score:
              type:
                - number
                - "null"
            success_rate:
              type:
                - number
                - "null"
            runs:
              type: integer
      required:
        - id
        - name
        - type
        - category
        - status
      additionalProperties: true
  securitySchemes:
    ozkBearer:
      type: http
      scheme: bearer
      description: "ozk_ platform API key (Authorization: Bearer ozk_…)"
```
