# Déclencher un run — API CacheBoost

> Déclencher manuellement un run de boost immédiatement.

Source: https://www.cache-boost.com/fr/support/api-reference/boosts/run.md
Language: fr

---



Manually trigger a boost run immediately. The response is `202 Accepted` — the run is queued and processed asynchronously. Poll `GET /v1/runs/{run_id}` to track progress.

**`POST /v1/boosts/{id}/run`** — Scope: `boosts:write`

## Example request

```bash
curl -X POST https://api.cache-boost.com/v1/boosts/15/run \
  -H "Authorization: Bearer cb_live_YOUR_KEY"
```

## Response

`202 Accepted`

```json
{
  "run_id": 88,
  "status": "pending"
}
```

Use the returned `run_id` to poll `GET /v1/runs/{id}` for progress.
See: https://www.cache-boost.com/support/api-reference/runs/get

## Errors

| Code | Description |
|------|-------------|
| `401` | Missing or invalid API key |
| `403` | Insufficient scope or access denied |
| `404` | Boost not found |
| `409` | A run is already in progress for this boost |



---

**CacheBoost** — Automatic cache warming for faster websites.

- Website: https://www.cache-boost.com
- Full content (all pages): https://www.cache-boost.com/llms-full.txt
- LLM index: https://www.cache-boost.com/llms.txt
- Documentation: https://www.cache-boost.com/support/getting-started/introduction
- Start free: https://www.cache-boost.com/try
