Browse API
The Browse surface walks the corpus hierarchy: collections contain libros, libros contain pages. Endpoints here return only structural metadata (identifiers, page counts, ranges). For per-page transcription content, see the Pages tag. For DLU-level structure inside a libro, see the DLU tag.
| Method | Path | Summary | Key params | Response |
|---|---|---|---|---|
| GET | /collections | List all collections in the index | — | CollectionSummary[] |
| GET | /collections/{collection}/libros | List libros in a collection | collection (path:string) | LibroSummary[] |
| GET | /collections/{collection}/libros/{libro}/pages | List pages in a libro | collection (path:string)libro (path:integer) | PageSummary2[] |
| GET | /collections/{collection}/libros/{libro}/pages-info | Batch per-page info for a whole libro | collection (path:string)libro (path:integer) | JSON |
| GET | /collections/{collection}/libros/{libro}/pages/{page}/info | Per-page metadata (error rate, reindex status) | collection (path:string)libro (path:integer)page (path:integer) | PageInfoResponse |
Examples
Section titled “Examples”List collections
curl -H "X-API-Key: $API_KEY" "$ARCHAIC/collections"List libros in a collection
curl -H "X-API-Key: $API_KEY" "$ARCHAIC/collections/dipucoru/libros"