GET /v1/questions
GET /v1/questions returns a paginated list of questions from the QD corpus,
filterable by test, year, session, response format, and other dimensions
defined in the platform spec.
Request
Section titled “Request”Placeholder — query parameters and filter shape to be filled in by content agents. See the platform Spec for the canonical filter schema.
Response
Section titled “Response”Placeholder — response shape, pagination metadata, and example bodies to be filled in by content agents.
Example
Section titled “Example”curl "https://api.qd.org/v1/questions?limit=10"const params = new URLSearchParams({ limit: '10' });const r = await fetch(`https://api.qd.org/v1/questions?${params}`);const data = await r.json();