> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clustr-ai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Run Connector Refresh

> Re-ingest every connector in a slot now

Refresh every connector in a [slot](/api-reference/set-connector-slot) now, outside the
[schedule](/api-reference/get-connector-refresh-schedule). Starts one import job over the slot
roster; follow it with [List Jobs](/api-reference/list-jobs) like any manual import.

<Warning>
  This spends credits per connector in a slot, the same as the scheduled fire. `403` when the
  workspace has no connector slots.
</Warning>

<RequestExample>
  ```bash cURL theme={null}
  curl -X POST https://api.clustr-ai.com/api/public/connector-refresh/run \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```

  ```python Python theme={null}
  import requests

  requests.post(
      "https://api.clustr-ai.com/api/public/connector-refresh/run",
      headers={"Authorization": "Bearer YOUR_API_KEY"},
  )
  ```

  ```javascript JavaScript theme={null}
  await fetch("https://api.clustr-ai.com/api/public/connector-refresh/run", {
    method: "POST",
    headers: { Authorization: "Bearer YOUR_API_KEY" },
  });
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "data": { "started": true }
  }
  ```

  ```json 403 theme={null}
  {
    "success": false,
    "error": {
      "message": "connector refresh is not available",
      "code": "FORBIDDEN"
    }
  }
  ```
</ResponseExample>
