---
title: "Request wave insights"
method: POST
path: "/projects/{projectId}/waves/{waveId}/insights"
tags: ["Swarm insights"]
---

# Request wave insights

`POST /projects/{projectId}/waves/{waveId}/insights`

Answers **202**: generation is scheduled, not done. Poll the GET above rather than re-requesting.

**SPENDS.** This runs models on your organization's account and draws on the `insightsPerDay` ledger, which is SHARED with eval-run and user-testing insights — burning it here takes it from there too.

Three refusals, and they mean different things:
- `429` with `code: "RATE_LIMITED"` and a short `Retry-After` — the per-minute burst brake. Wait seconds.
- `429` naming `insightsPerDay` in `details` — the daily ledger. `Retry-After` counts to UTC midnight.
- `403` — the feature is not available to your organization. Waiting will never help; collapsing this into the 429s would send someone who hit today's cap shopping for a plan they already have.

## Request body

- WaveInsightsRequest
  - `force` boolean — Regenerate over a wave that already has insights. OFF by default because it SPENDS a second time against your organization's shared daily ledger — and the common cause of a repeated request is a caller that did not poll.

## Response `202`

Generation was scheduled.

- WaveInsightsRequested
  - `waveId` string, required
  - `projectId` string, required
  - `status` 'pending', required

## Other responses

- `400` — Malformed body or parameters.
- `401` — Missing, invalid, revoked, or orphaned key (`UNAUTHORIZED`) — or the **target MCP server** needs an OAuth grant (`OAUTH_REQUIRED`), which is a property of the server, not your key.
- `403` — Key is valid but not allowed to do this.
- `404` — Unknown project, server, or resource.
- `429` — Per-key rate limit exceeded (60 requests/minute sustained, bursts up to 10). Honor `Retry-After` and back off with jitter.
- `500` — Something failed on MCPJam's side.

---

[API](https://skmtc.net/mcpjam/apis/mcpjam-api.md) · [All operations](https://skmtc.net/mcpjam/apis/mcpjam-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mcpjam/mcpjam-api/revisions/d3adfe49fbbf/schema)
