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

# Discover API resources

> Return the resources, versions, and operations available to the authenticated client.

Returns a machine-readable index of Clumio resources. Use the resource name and operation ID to
discover paths instead of hard-coding them in a client.

## Headers

<ParamField header="Accept" type="string" default="application/api.clumio.*=v1+json">
  Selects API resource versions. Omit it to use the newest versions.
</ParamField>

<ParamField header="X-Clumio-OrganizationalUnit-Context" type="string">
  UUID of the organizational unit in which to perform the request.
</ParamField>

## Response

<ResponseField name="<resource>.supported_versions" type="string[]">
  Versions available for the resource.
</ResponseField>

<ResponseField name="<resource>.<version>.<operation-id>" type="object">
  The path, HTTP method, and URI-template status for an operation.
</ResponseField>

```json theme={null}
{
  "consolidated-alerts": {
    "supported_versions": ["v2", "v1"],
    "v2": {
      "list-consolidated-alerts": {
        "href": "/alerts/consolidated",
        "type": "get",
        "templated": false
      }
    }
  }
}
```

## Next

* [List users](/api-reference/users/list-users)
* [List tasks](/api-reference/tasks/list-tasks)
