List analysis results (query parameter)

Returns paginated analysis results for a specific run, identified by query parameter. Functionally equivalent to GET /analysis/runs/{runId}/results. Supports filtering by prompt text, provider ID, and prompt tag.

GET /analysis/results

List analysis results (query parameter)

Returns paginated analysis results for a specific run, identified by query parameter. Functionally equivalent to GET /analysis/runs/{runId}/results. Supports filtering by prompt text, provider ID, and prompt tag.

Authentication: API key required (Bearer token)

Parameters

NameInRequiredDescription
runIdqueryYesAnalysis run ID.
limitqueryNoMaximum number of results to return.
offsetqueryNoNumber of results to skip before returning results.
promptqueryNoFilter results by exact prompt text.
providerqueryNoFilter results by provider ID.
locationqueryNoFilter results by exact ISO 3166-1 alpha-2 location code.
tagqueryNoFilter results by prompt tag. Returns results for all prompts that have this tag.

Request Example

curl -X GET https://sellm.io/api/v1/analysis/results \
  -H "Authorization: Bearer sellm_your_api_key_here"

Responses

StatusDescription
200Analysis results
401Unauthorized
404Run not found
429Rate limited
500Internal error