> 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.

# Get processing status / results

GET https://api.cloudraker.com/process/{id}

Returns the pipeline status and, via `?include=content,results,evidence` and `?format=json|markdown`, the inlined parsed content, action results and grounding evidence. 410 once the TTL has expired (grace window), 404 after grace or for an unknown id.

Reference: https://docs.cloudraker.com/api/cloud-raker-api/workspace/process/get-process

## OpenAPI Specification

```yaml
openapi: 3.1.0
info:
  title: CloudRaker API
  version: 1.0.0
paths:
  /process/{id}:
    get:
      operationId: get-process
      summary: Get processing status / results
      description: >-
        Returns the pipeline status and, via `?include=content,results,evidence`
        and `?format=json|markdown`, the inlined parsed content, action results
        and grounding evidence. 410 once the TTL has expired (grace window), 404
        after grace or for an unknown id.
      tags:
        - process
      parameters:
        - name: id
          in: path
          required: true
          schema:
            type: string
        - name: include
          in: query
          description: 'Comma-separated: `content`, `results`, `evidence`.'
          required: false
          schema:
            type: string
        - name: format
          in: query
          description: >-
            Content representation for `include=content`. Default `json` (audio
            files have no markdown).
          required: false
          schema:
            $ref: '#/components/schemas/ProcessIdGetParametersFormat'
        - name: Authorization
          in: header
          description: Bearer authentication
          required: true
          schema:
            type: string
      responses:
        '200':
          description: Current status (and requested includes).
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProcessStatus'
        '404':
          description: Unknown processing id.
          content:
            application/json:
              schema:
                description: Any type
        '410':
          description: Processing expired (within grace window).
          content:
            application/json:
              schema:
                description: Any type
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:
    ProcessIdGetParametersFormat:
      type: string
      enum:
        - json
        - markdown
      title: ProcessIdGetParametersFormat
    ProcessStatusStatus:
      type: string
      enum:
        - preprocessing
        - running
        - done
        - failed
        - expired
      title: ProcessStatusStatus
    ProcessStatusFilesItems:
      type: object
      properties:
        fileId:
          type: string
        fileName:
          type: string
        processingKind:
          type:
            - string
            - 'null'
        status:
          type: string
        error:
          type: string
        content:
          description: Parsed file content, inlined when `?include=content`.
      required:
        - fileId
        - fileName
        - processingKind
        - status
      title: ProcessStatusFilesItems
    ProcessStatusActionsItems:
      type: object
      properties:
        runId:
          type:
            - string
            - 'null'
        installedActionId:
          type: string
        status:
          type: string
        error:
          type: string
        result:
          description: Action result JSON, inlined when `?include=results`.
      required:
        - runId
        - installedActionId
        - status
      title: ProcessStatusActionsItems
    ProcessStatus:
      type: object
      properties:
        processingId:
          type: string
        status:
          $ref: '#/components/schemas/ProcessStatusStatus'
        expiresAt:
          type: string
          format: date-time
        files:
          type: array
          items:
            $ref: '#/components/schemas/ProcessStatusFilesItems'
        actions:
          type: array
          items:
            $ref: '#/components/schemas/ProcessStatusActionsItems'
      required:
        - processingId
        - status
        - expiresAt
        - files
        - actions
      title: ProcessStatus
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

```

## Examples



**Request**

```json
{}
```

**Response**

```json
{
  "processingId": "a3f47b9e-8c2d-4f1a-9b7e-2d5f3c6a1b8e",
  "status": "preprocessing",
  "expiresAt": "2024-01-15T09:30:00Z",
  "files": [
    {
      "fileId": "f9d8c7b6-a123-4e56-b789-0c1d2e3f4a5b",
      "fileName": "meeting_transcript.txt",
      "processingKind": "transcription",
      "status": "queued",
      "error": "",
      "content": null
    }
  ],
  "actions": [
    {
      "runId": "d4e5f6a7-b8c9-40d1-9e2f-3a4b5c6d7e8f",
      "installedActionId": "sentiment-analysis-v2",
      "status": "pending",
      "error": "",
      "result": null
    }
  ]
}
```

**SDK Code**

```python
import requests

url = "https://api.cloudraker.com/process/id"

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

	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/process/id")

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

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

```csharp
using RestSharp;

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