> 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/api/cloud-raker-api/workspace/installed-actions/list-action-catalog

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: CloudRaker API
  version: 1.0.0
paths:
  /actions/catalog:
    get:
      operationId: list-action-catalog
      summary: List installable catalog entries
      description: >-
        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`.
      tags:
        - installedActions
      parameters:
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Installable catalog entries.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionCatalogList'
servers:
  - url: https://api.cloudraker.com
    description: Production
  - url: https://api.staging.raker.one
    description: Staging
  - url: https://api.dev.raker.one
    description: Development
components:
  schemas:
    ActionCatalogEntryIcon:
      type: string
      enum:
        - clipboard-list
        - file-input
        - file-search
        - scale
        - signature
        - zap
      title: ActionCatalogEntryIcon
    ActionCatalogEntryAccent:
      type: string
      enum:
        - blue
        - green
        - neutral
        - orange
        - purple
        - teal
      title: ActionCatalogEntryAccent
    ActionManifestInputSourcesItems0:
      type: object
      properties:
        type:
          type: string
          enum:
            - file
        content_types:
          type:
            - array
            - 'null'
          items:
            type: string
          description: Accepted mime types, or null for any.
      required:
        - type
        - content_types
      title: ActionManifestInputSourcesItems0
    ActionManifestInputSourcesItems1:
      type: object
      properties:
        type:
          type: string
          enum:
            - byproduct
        kind:
          type: string
          description: Required parsing byproduct, e.g. `structured` or `transcript`.
      required:
        - type
        - kind
      title: ActionManifestInputSourcesItems1
    ActionManifestInputSourcesItems:
      oneOf:
        - $ref: '#/components/schemas/ActionManifestInputSourcesItems0'
        - $ref: '#/components/schemas/ActionManifestInputSourcesItems1'
      title: ActionManifestInputSourcesItems
    ActionManifestInput:
      type: object
      properties:
        sources:
          type: array
          items:
            $ref: '#/components/schemas/ActionManifestInputSourcesItems'
        multiple:
          type: boolean
          description: Whether one run may consume several files.
      required:
        - sources
        - multiple
      title: ActionManifestInput
    ActionManifestConfig:
      type: object
      properties:
        install:
          type:
            - object
            - 'null'
          additionalProperties:
            description: Any type
          description: JSON Schema for install-time configuration (UI hint only).
        run:
          type:
            - object
            - 'null'
          additionalProperties:
            description: Any type
          description: JSON Schema for per-run parameters (UI hint only).
        documents:
          type: array
          items:
            type: string
          description: Config keys that reference a file id, e.g. `template`.
      required:
        - install
        - run
        - documents
      title: ActionManifestConfig
    ActionManifestOutputType:
      type: string
      enum:
        - json
        - byproduct
        - file
      title: ActionManifestOutputType
    ActionManifestOutput:
      type: object
      properties:
        type:
          $ref: '#/components/schemas/ActionManifestOutputType'
        kind:
          type:
            - string
            - 'null'
        content_type:
          type:
            - string
            - 'null'
      required:
        - type
        - kind
        - content_type
      title: ActionManifestOutput
    ActionManifest:
      type: object
      properties:
        slug:
          type: string
        name:
          type: string
        description:
          type: string
        version:
          type: integer
        input:
          $ref: '#/components/schemas/ActionManifestInput'
        config:
          $ref: '#/components/schemas/ActionManifestConfig'
        output:
          $ref: '#/components/schemas/ActionManifestOutput'
        timeout_seconds:
          type: integer
        execution:
          type:
            - string
            - 'null'
          enum:
            - playbook-native
          description: Non-null marks an action that only a playbook may dispatch.
      required:
        - slug
        - name
        - description
        - version
        - input
        - config
        - output
        - timeout_seconds
        - execution
      title: ActionManifest
    ActionCatalogEntry:
      type: object
      properties:
        slug:
          type: string
        action:
          type: string
          description: Catalog entry identifier.
        title:
          type: string
        description:
          type: string
        shortDescription:
          type: string
        category:
          type: string
        theme:
          type: string
        tags:
          type: array
          items:
            type: string
        icon:
          $ref: '#/components/schemas/ActionCatalogEntryIcon'
        accent:
          $ref: '#/components/schemas/ActionCatalogEntryAccent'
        config:
          type: object
          additionalProperties:
            description: Any type
          description: Default configuration seeded on install.
        manifest:
          $ref: '#/components/schemas/ActionManifest'
        section:
          type: string
        firstParty:
          type: boolean
      required:
        - slug
        - action
        - title
        - description
        - shortDescription
        - category
        - theme
        - tags
        - icon
        - accent
        - config
        - manifest
        - section
        - firstParty
      title: ActionCatalogEntry
    ActionCatalogList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ActionCatalogEntry'
      required:
        - data
      title: ActionCatalogList
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```

## Examples



**Request**

```json
{}
```

**Response**

```json
{
  "data": [
    {
      "slug": "extract-structured",
      "action": "extract-structured",
      "title": "Structured Data Extraction",
      "description": "Extract structured data from documents such as invoices, receipts, and forms using AI-powered parsing.",
      "shortDescription": "Extract structured data from PDFs and images.",
      "category": "Document Processing",
      "theme": "automation",
      "tags": [
        "extraction",
        "documents",
        "AI"
      ],
      "icon": "clipboard-list",
      "accent": "blue",
      "config": {
        "language": "en",
        "outputFormat": "json"
      },
      "manifest": {
        "slug": "extract-structured",
        "name": "Document Understanding",
        "description": "Automatically extract structured data fields from uploaded documents to streamline data entry and processing.",
        "version": 3,
        "input": {
          "sources": [
            {
              "type": "file",
              "content_types": [
                "application/pdf",
                "image/png",
                "image/jpeg"
              ]
            }
          ],
          "multiple": true
        },
        "config": {
          "install": {
            "language": "string",
            "outputFormat": "string"
          },
          "run": {
            "confidenceThreshold": "number"
          },
          "documents": [
            "template"
          ]
        },
        "output": {
          "type": "json",
          "kind": "structured",
          "content_type": "application/json"
        },
        "timeout_seconds": 900,
        "execution": null
      },
      "section": "Data Extraction",
      "firstParty": true
    }
  ]
}
```

**SDK Code**

```python
import requests

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

payload = {}
headers = {
    "Authorization": "Bearer <token>",
    "Content-Type": "application/json"
}

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

print(response.json())
```

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

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"
	"strings"
	"net/http"
	"io"
)

func main() {

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

	payload := strings.NewReader("{}")

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

	req.Header.Add("Authorization", "Bearer <token>")
	req.Header.Add("Content-Type", "application/json")

	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>'
request["Content-Type"] = 'application/json'
request.body = "{}"

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>")
  .header("Content-Type", "application/json")
  .body("{}")
  .asString();
```

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

$client = new \GuzzleHttp\Client();

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

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>");
request.AddHeader("Content-Type", "application/json");
request.AddParameter("application/json", "{}", ParameterType.RequestBody);
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = [
  "Authorization": "Bearer <token>",
  "Content-Type": "application/json"
]
let parameters = [] as [String : Any]

let postData = JSONSerialization.data(withJSONObject: parameters, options: [])

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
request.httpBody = postData as Data

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()
```