> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.cloudraker.com/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.cloudraker.com/_mcp/server.

# List installable catalog entries

GET https://api.cloudraker.com/actions/catalog

Returns the presentation catalog the install UI renders — title, descriptions, category, tags, icon and accent, the default `config` an install is seeded with, and the underlying action `manifest`. Authorization: any authenticated organization member. Install an entry by posting its `action` to `POST /actions`.

Reference: https://docs.cloudraker.com/workspace/api/installed-actions/list-action-catalog

## Authentication

- `Authorization` header (bearer token, required)

## Response

### 200

Installable catalog entries.

- `data` (list of object, required)
  - `slug` (string, required)
  - `action` (string, required) — Catalog entry identifier.
  - `title` (string, required)
  - `description` (string, required)
  - `shortDescription` (string, required)
  - `category` (string, required)
  - `theme` (string, required)
  - `tags` (list of string, required)
  - `icon` (enum, required)
    - Allowed values: `clipboard-list`, `file-input`, `file-search`, `scale`, `signature`, `zap`
  - `accent` (enum, required)
    - Allowed values: `blue`, `green`, `neutral`, `orange`, `purple`, `teal`
  - `config` (map from string to any, required) — Default configuration seeded on install.
  - `manifest` (object, required)
    - `slug` (string, required)
    - `name` (string, required)
    - `description` (string, required)
    - `version` (integer, required)
    - `input` (object, required)
      - `sources` (list of object or object, required)
        - object
          - `type` ("file", required)
          - `content_types` (list of string, required, nullable) — Accepted mime types, or null for any.
        - object
          - `type` ("byproduct", required)
          - `kind` (string, required) — Required parsing byproduct, e.g. `structured` or `transcript`.
      - `multiple` (boolean, required) — Whether one run may consume several files.
    - `config` (object, required)
      - `install` (map from string to any, required, nullable) — JSON Schema for install-time configuration (UI hint only).
      - `run` (map from string to any, required, nullable) — JSON Schema for per-run parameters (UI hint only).
      - `documents` (list of string, required) — Config keys that reference a file id, e.g. `template`.
    - `output` (object, required)
      - `type` (enum, required)
        - Allowed values: `json`, `byproduct`, `file`
      - `kind` (string, required, nullable)
      - `content_type` (string, required, nullable)
    - `timeout_seconds` (integer, required)
    - `execution` ("playbook-native", required, nullable) — Non-null marks an action that only a playbook may dispatch.
  - `section` (string, required)
  - `firstParty` (boolean, required)

## Examples

**Response**

```json
{
  "data": [
    {
      "slug": "extract-structured",
      "action": "string",
      "title": "string",
      "description": "string",
      "shortDescription": "string",
      "category": "string",
      "theme": "string",
      "tags": [
        "string"
      ],
      "icon": "clipboard-list",
      "accent": "blue",
      "config": {},
      "manifest": {
        "slug": "extract-structured",
        "name": "Document Understanding",
        "description": "string",
        "version": 1,
        "input": {
          "sources": [
            {
              "type": "string",
              "content_types": [
                "application/pdf"
              ]
            }
          ],
          "multiple": true
        },
        "config": {
          "install": {},
          "run": {},
          "documents": [
            "string"
          ]
        },
        "output": {
          "type": "json",
          "kind": "string",
          "content_type": "string"
        },
        "timeout_seconds": 900,
        "execution": "string"
      },
      "section": "string",
      "firstParty": true
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "https://api.cloudraker.com/actions/catalog"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript
const url = 'https://api.cloudraker.com/actions/catalog';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://api.cloudraker.com/actions/catalog"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://api.cloudraker.com/actions/catalog")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://api.cloudraker.com/actions/catalog")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://api.cloudraker.com/actions/catalog', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://api.cloudraker.com/actions/catalog");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://api.cloudraker.com/actions/catalog")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```