> 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 action manifests

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

Returns the manifest of every action the platform can run — what files it accepts (`input.sources`, `input.multiple`), the JSON Schemas describing its install-time and per-run configuration, what it produces (`output`), its timeout, and whether it is playbook-native (`execution`). Authorization: any authenticated organization member. This is the capability catalog behind installs; it does not reflect what this organization has installed (see `GET /actions`).

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

## Authentication

- `Authorization` header (bearer token, required)

## Response

### 200

Every action manifest.

- `data` (list of 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.

## Examples

**Response**

```json
{
  "data": [
    {
      "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"
    }
  ]
}
```

**SDK Code**

```python
import requests

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

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

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

print(response.json())
```

```javascript
const url = 'https://api.cloudraker.com/actions/library';
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/library"

	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/library")

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/library")
  .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/library', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

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

```csharp
using RestSharp;

var client = new RestClient("https://api.cloudraker.com/actions/library");
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/library")! 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()
```