List analysis results for a run
Returns paginated analysis results for a specific run, identified by path parameter. Supports filtering by prompt text, provider ID, and prompt tag.
GET /analysis/runs/{runId}/results
List analysis results for a run
Returns paginated analysis results for a specific run, identified by path parameter. Supports filtering by prompt text, provider ID, and prompt tag.
Authentication: API key required (Bearer token)
Parameters
| Name | In | Required | Description |
|---|---|---|---|
runId | path | Yes | Analysis run ID. |
limit | query | No | Maximum number of results to return. |
offset | query | No | Number of results to skip before returning results. |
prompt | query | No | Filter results by exact prompt text. |
provider | query | No | Filter results by provider ID. |
location | query | No | Filter results by exact ISO 3166-1 alpha-2 location code. |
tag | query | No | Filter results by prompt tag. Returns results for all prompts that have this tag. |
Request Example
curl -X GET https://sellm.io/api/v1/analysis/runs/example_id/results \
-H "Authorization: Bearer sellm_your_api_key_here"
Responses
| Status | Description |
|---|---|
200 | Analysis results |
401 | Unauthorized |
404 | Run not found |
429 | Rate limited |
500 | Internal error |