Total endpoints
11
All documented handlers under /api, including one internal ingest hook.
saved.archi
your architecture companion
Developer surface
A browsable directory of the saved.archi machine layer: search suggestions, map feeds, work intelligence phases, research generation, and internal operations. It is designed as the human-readable front door for the routes already living under /api.
Total endpoints
11
All documented handlers under /api, including one internal ingest hook.
Public endpoints
10
Reachable without internal authorization, though POST handlers still expect valid payloads.
Internal endpoints
1
Operational hooks intended for trusted automation only.
Write workflows
4
POST handlers for research creation, refresh, source review, and ingest.
Work intelligence
4
Site, source, and material intelligence around a specific work slug.
Map + search
3
Corpus discovery APIs for autocomplete, works maps, precedent browse, and jobs.
Distribution
Distribution
Quick start
These starter routes work directly in the browser or from the terminal and give a fast feel for the API surface.
/api/healthService heartbeat for saved.archi, including database configuration, reachability, and schema readiness.
curl https://saved.archi/api/healthOpen live response/api/search/suggestLightweight corpus suggestions spanning works, architects, bureaus, cities, regions, countries, and books.
Query params
curl "https://saved.archi/api/search/suggest?q=ando"Open live response/api/map/worksReturns mappable work results for browse mode or precedent-search mode, including facets and missing-coordinate counts.
Query params
curl "https://saved.archi/api/map/works?country=Japan&typology=museum"Open live response/api/map/jobsFilters architecture jobs into a map-ready response keyed by bureau, location, discipline, and hiring constraints.
Query params
curl "https://saved.archi/api/map/jobs?city=Tokyo&discipline=architecture"Open live responseDiscovery
Public endpoints for search, map browse, precedent-style exploration, and jobs discovery.
3 endpoints
/api/search/suggestLightweight corpus suggestions spanning works, architects, bureaus, cities, regions, countries, and books.
Query params
curl "https://saved.archi/api/search/suggest?q=ando"Open live response/api/map/worksReturns mappable work results for browse mode or precedent-search mode, including facets and missing-coordinate counts.
Query params
curl "https://saved.archi/api/map/works?country=Japan&typology=museum"Open live response/api/map/jobsFilters architecture jobs into a map-ready response keyed by bureau, location, discipline, and hiring constraints.
Query params
curl "https://saved.archi/api/map/jobs?city=Tokyo&discipline=architecture"Open live responseWork Intelligence
Work-level intelligence surfaces for site, source, material, and review workflows.
4 endpoints
/api/work/{slug}/site-intelligencePhase-one site intelligence for a work slug, centered on coordinates and location-derived context.
Path params
curl "https://saved.archi/api/work/<work-slug>/site-intelligence"/api/work/{slug}/phase-twoPhase-two work intelligence, including source graph context and deeper precedent-facing enrichment.
Path params
curl "https://saved.archi/api/work/<work-slug>/phase-two"/api/work/{slug}/phase-threePhase-three material and carbon intelligence for a work, including palette-level enrichment when available.
Path params
curl "https://saved.archi/api/work/<work-slug>/phase-three"/api/work/{slug}/source-reviewApproves or rejects candidate project-source links on a work record, then returns refreshed phase-two context.
Path params
Body fields
curl -X POST https://saved.archi/api/work/<work-slug>/source-review -H "Content-Type: application/json" -d '{"action":"approve","provider":"ArchDaily","url":"https://www.archdaily.com/...","title":"Project title"}'Research
Write endpoints that turn architecture questions into saved, refreshable research briefs.
2 endpoints
/api/research/briefsCreates a research brief record from a natural-language architecture question.
Body fields
curl -X POST https://saved.archi/api/research/briefs -H "Content-Type: application/json" -d '{"question":"How does adaptive reuse reshape museum design?"}'/api/research/briefs/{id}/refreshRefreshes an existing research brief by document id and returns the updated record.
Path params
curl -X POST https://saved.archi/api/research/briefs/<brief-id>/refreshOperations
Service health and internal operational hooks that keep the architecture dataset moving.
2 endpoints
/api/healthService heartbeat for saved.archi, including database configuration, reachability, and schema readiness.
curl https://saved.archi/api/healthOpen live response/api/internal/jobs/processRuns the jobs-ingest pipeline, optionally scoped to a single source configuration id.
Body fields
curl -X POST https://saved.archi/api/internal/jobs/process -H "Authorization: Bearer <token>" -H "Content-Type: application/json" -d '{"sourceConfigId":"greenhouse-default"}'