GET /api/v1/cv
The canonical v1 CV document. Supports optional partial responses through `sections` and `fields` so clients can pull only the slices they need.
Selecting an endpoint loads its contract preview. Use Run request when you want live timings, headers, and a fresh payload.
Parameters
sectionsstringNoComma-separated top-level sections such as meta,projectsfieldsstringNoComma-separated field paths such as meta.name,projects.urlNotes
- The sample request demonstrates projection with `sections` and `fields`.
- Remove the query string to retrieve the full CV document in one response.
- Cacheable GET routes now emit `ETag` and `Last-Modified` headers for conditional requests.
- Alternate media types are available on the same route through the `Accept` header.
Example Request
curl https://www.n7.nz/api/v1/cv?sections=meta,projects&fields=meta.name,meta.title,projects.name,projects.urlResponse
{ "meta": { "name": "Phil Smith", "title": "Senior Technical BA & Integration Analyst" }, "projects": [ { "name": "SecondBrain", "url": "#" }, { "name": "ContractRadar", "url": "#" }, { "name": "GovRadar", "url": "#" }, { "name": "SpecCheck", "url": "#" },...