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

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: CloudRaker API
  version: 1.0.0
paths:
  /actions/library:
    get:
      operationId: list-action-library
      summary: List action manifests
      description: >-
        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`).
      tags:
        - installedActions
      parameters:
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Every action manifest.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ActionLibraryList'
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:
    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
    ActionLibraryList:
      type: object
      properties:
        data:
          type: array
          items:
            $ref: '#/components/schemas/ActionManifest'
      required:
        - data
      title: ActionLibraryList
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```

## Examples



**Request**

```json
{}
```

**Response**

```json
{
  "data": [
    {
      "slug": "extract-structured",
      "name": "Document Understanding",
      "description": "Extracts structured data from PDF documents using OCR and layout analysis.",
      "version": 3,
      "input": {
        "sources": [
          {
            "type": "file",
            "content_types": [
              "application/pdf"
            ]
          }
        ],
        "multiple": true
      },
      "config": {
        "install": {
          "api_key": {
            "type": "string",
            "description": "API key for authentication with the OCR service"
          },
          "region": {
            "type": "string",
            "description": "Deployment region for the OCR service",
            "enum": [
              "us-east-1",
              "eu-west-1",
              "ap-southeast-2"
            ]
          }
        },
        "run": {
          "language": {
            "type": "string",
            "description": "Language code for OCR processing",
            "enum": [
              "en",
              "es",
              "fr",
              "de"
            ]
          },
          "include_tables": {
            "type": "boolean",
            "description": "Whether to extract tables from the document"
          }
        },
        "documents": [
          "template"
        ]
      },
      "output": {
        "type": "json",
        "kind": "structured",
        "content_type": "application/json"
      },
      "timeout_seconds": 900,
      "execution": null
    }
  ]
}
```

**SDK Code**

```python
import requests

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

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/library';
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/library"

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

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/library")
  .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/library', [
  'body' => '{}',
  'headers' => [
    'Authorization' => 'Bearer <token>',
    'Content-Type' => 'application/json',
  ],
]);

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>");
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/library")! 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()
```