Estante Nacional APIestante-nacional.com.br ↗
Search and discover Brazilian comics, manga, web novels, and animations from the Estante Nacional catalog. Find content by title, author, or genre to explore the full range of Portuguese-language entertainment media available in this comprehensive collection.
curl -X GET 'https://api.parse.bot/scraper/bb66cc6f-5f50-4996-a0c5-c02601ef826f/search_items?page=1' \ -H 'X-API-Key: $PARSE_API_KEY'
List items from the Estante Nacional catalog, returning 20 items per page ordered alphabetically by document ID. Each item includes its URL, thumbnail, categories (genres), format (type of work), title, and author(s). Pagination is controlled by the page parameter; omitting it returns the first page.
| Param | Type | Description |
|---|---|---|
| page | integer | Page number (1-based). Each page contains 20 items. |
{
"type": "object",
"fields": {
"page": "current page number",
"items": "array of catalog items, each with url, thumbnail, categories, format, title, author",
"total": "total number of works in the catalog",
"has_more": "whether more pages are available after the current one",
"per_page": "items per page (always 20)",
"total_pages": "total number of pages available"
},
"sample": {
"data": {
"page": 1,
"items": [
{
"url": "https://estante-nacional.com.br/obra/lebre-e-coelho",
"title": "Lebre e Coelho",
"author": [
"Alec"
],
"format": "Web comic",
"thumbnail": "https://m.media-amazon.com/images/I/91DpRAq+X1L._SL1500_.jpg",
"categories": [
"Comédia",
"Drama",
"Romance"
]
}
],
"total": 775,
"has_more": true,
"per_page": 20,
"total_pages": 39
},
"status": "success"
}
}About the Estante Nacional API
The Estante Nacional API on Parse exposes 1 endpoint for the publicly available data on estante-nacional.com.br. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.