# List capabilities

Source: https://www.supervisible.com/developers/capabilities/get-capabilities

GET /capabilities



## GET /capabilities

Returns the organization's active, non-archived capabilities, used to resolve capability IDs when upserting assignments. Pass for_project=<uuid> to filter to the capabilities currently attached to a specific project through planned or reserved allocation lines.

Base URL: https://app.supervisible.com/api/v1

Required scope: read:capabilities

## Operation contract

The definition below includes parameters, request bodies, response schemas, examples and authentication requirements.

```json
{
  "summary": "List capabilities",
  "description": "Returns the organization's active, non-archived capabilities, used to resolve capability IDs when upserting assignments. Pass for_project=<uuid> to filter to the capabilities currently attached to a specific project through planned or reserved allocation lines.",
  "tags": [
    "capabilities"
  ],
  "security": [
    {
      "bearerAuth": []
    }
  ],
  "x-required-scope": "read:capabilities",
  "parameters": [
    {
      "in": "query",
      "name": "limit",
      "required": false,
      "description": "Number of rows (default 50, max 200).",
      "schema": {
        "type": "number"
      }
    },
    {
      "in": "query",
      "name": "offset",
      "required": false,
      "description": "Pagination offset (default 0).",
      "schema": {
        "type": "number"
      }
    },
    {
      "in": "query",
      "name": "for_project",
      "required": false,
      "description": "Filter to capabilities attached to this project through planned or reserved allocation lines.",
      "schema": {
        "type": "string",
        "description": "UUID"
      }
    }
  ],
  "responses": {
    "200": {
      "description": "Successful response",
      "content": {
        "application/json": {
          "example": {
            "data": [
              {
                "id": "019cb675-c4d6-7e90-8806-25e5145c3a06",
                "name": "Web Dev",
                "description": null,
                "createdAt": "2026-01-06T10:00:00.000Z",
                "updatedAt": "2026-01-06T10:00:00.000Z"
              }
            ]
          }
        }
      }
    },
    "400": {
      "description": "Invalid request"
    },
    "401": {
      "description": "Unauthorized"
    },
    "403": {
      "description": "Missing required scope or current member permission"
    },
    "404": {
      "description": "Not found"
    },
    "409": {
      "description": "Conflict; refresh current state and preview again"
    },
    "429": {
      "description": "Rate limited; honor Retry-After"
    }
  }
}
```

## Referenced definitions

```json
{
  "components": {
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "API Key"
      }
    }
  }
}
```

[Complete OpenAPI specification](https://www.supervisible.com/openapi/public-api-v1.json)
