Get Tier Effectiveness
GET
/api/canvas/retrieval-quality/tier-effectiveness
const url = 'https://example.com/api/canvas/retrieval-quality/tier-effectiveness?deal_id=example';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/api/canvas/retrieval-quality/tier-effectiveness?deal_id=example' \ --header 'Authorization: Bearer <token>'Get cross-deal recovery tier effectiveness metrics.
Shows which recovery tiers (namespace_sweep, deep_index_sweep, etc.) are valuable, neutral, or noisy for each section type.
Query params: section_type: Optional filter to a single section type.
No LLM calls — pure Redis aggregation.
Prompt 22, Enhancement 4 (Mar 2026).
Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Responses
Section titled “ Responses ”Successful Response
Media type application/json
Example generated
exampleValidation Error
Media type application/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationErrorobject
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
input
Input
ctx
Context
object
Example generated
{ "detail": [ { "loc": [ "example" ], "msg": "example", "type": "example", "input": "example", "ctx": {} } ]}