Agent skill
nlb-singapore
Search the National Library Board (NLB) Singapore catalog for books, audiovisual materials, and digital resources via the official Catalogue API. Use this skill whenever the user wants to search Singapore's national library holdings, check book availability across NLB branches, look up titles by ISBN/BRN, find new arrivals, browse checkout trends, or retrieve detailed bibliographic records from NLB. Triggers when referencing Singapore library collections, Southeast Asian library holdings, or NLB resources.
Install this agent skill to your Project
npx add-skill https://github.com/kltng/humanities-skills/tree/main/nlb-singapore
SKILL.md
NLB Singapore Catalogue API Skill
Search and retrieve bibliographic records from Singapore's National Library Board catalog.
Critical: Things Claude Won't Know Without This Skill
API key is required — two headers on every request
The NLB API requires both an API key and an app code:
X-API-KEY: your-api-key
X-APP-Code: your-app-code
Without these, all endpoints return 401. Apply for free keys at https://go.gov.sg/nlblabs-form (contact: nlblabs@nlb.gov.sg).
Set environment variables NLB_API_KEY and NLB_APP_CODE, or pass them to the Python client constructor.
Two search endpoints with different strengths
| Endpoint | Best for | Returns |
|---|---|---|
SearchTitles |
Keyword search with facets and filters | Title summaries + facets |
GetTitles |
Field-specific search (title, author, subject, ISBN) | Full title records |
SearchTitles: ?Keywords=singapore+history&Limit=10
GetTitles: ?Title=singapore&Author=lee&Limit=10
BRN is the primary record identifier
BRN (Bibliographic Record Number) is NLB's internal ID. Use it for GetTitleDetails and GetAvailabilityInfo lookups. Found in search results under records[].brn or brn.
Native language fields for CJK content
Most text fields have native-language variants: title/nativeTitle, author/nativeAuthor, seriesTitle/nativeSeriesTitle. Always check both for Chinese, Malay, and Tamil titles.
Endpoints
| Endpoint | Purpose |
|---|---|
GET /SearchTitles |
Keyword search with facets and filters |
GET /GetTitles |
Field-specific search (title, author, subject, ISBN) |
GET /GetTitleDetails |
Full record by BRN or ISBN |
GET /GetAvailabilityInfo |
Check availability across branches |
GET /GetNewTitles |
Browse new arrivals |
GET /GetMostCheckoutsTrendsTitles |
Checkout trends by branch |
Key Search Parameters
SearchTitles
| Param | Description | Example |
|---|---|---|
Keywords |
Search keywords (required) | Keywords=singapore+history |
Limit |
Results per page (default 20, max 100) | Limit=20 |
Offset |
Pagination offset | Offset=20 |
MaterialTypes |
Filter by material type | MaterialTypes=BOOK |
Languages |
Filter by language | Languages=Chinese |
Locations |
Filter by library branch | Locations=TRL |
DateFrom / DateTo |
Publication year range | DateFrom=2020&DateTo=2025 |
Availability |
Only available items | Availability=true |
Fiction |
Fiction filter | Fiction=true |
GetTitles
| Param | Description |
|---|---|
Keywords |
General keywords |
Title |
Title-specific search |
Author |
Author-specific search |
Subject |
Subject-specific search |
ISBN |
ISBN lookup |
Limit / Offset |
Pagination |
Response Structure
Search Results
{
"totalRecords": 999,
"count": 20,
"hasMoreRecords": true,
"nextRecordsOffset": 20,
"titles": [
{
"title": "Singapore: A Biography",
"nativeTitle": "",
"author": "Frost, Mark Ravinder",
"nativeAuthor": "",
"records": [
{
"brn": 13737742,
"isbns": ["9789814385169"],
"publisher": ["Editions Didier Millet"],
"publishDate": "2009",
"subjects": ["Singapore -- History"],
"format": {"code": "BK", "name": "Books"}
}
]
}
],
"facets": [...]
}
Title Detail Fields
Full records include 50+ fields: brn, title, nativeTitle, author, nativeAuthor, publisher, publishDate, isbns, subjects, summary, contents, edition, physicalDescription, language, format, allowReservation, availability, activeReservationsCount.
Availability Info
{
"items": [
{
"brn": 13737742,
"callNumber": "959.57 FRO",
"location": {"code": "TRL", "name": "Lee Kong Chian Reference Library"},
"transactionStatus": {"code": "S", "name": "Available on Shelf"},
"media": {"code": "BOOK", "name": "Book"}
}
]
}
Transaction status codes: S (on shelf), L (on loan), H (on hold), I (in transit), T (transferred).
Python Script
from scripts.nlb_api import NlbAPI
nlb = NlbAPI() # reads NLB_API_KEY and NLB_APP_CODE from env
# Keyword search
results = nlb.search("singapore history", limit=10)
# Field-specific search
results = nlb.get_titles(title="dream of the red chamber", language="Chinese")
# Title details by BRN
detail = nlb.get_title_details(brn=13737742)
# Check availability
avail = nlb.get_availability(brn=13737742)
for item in avail:
print(f"{item['location']['name']}: {item['transactionStatus']['name']}")
# New arrivals
new = nlb.get_new_titles(date_range="Weekly", limit=20)
# Summarize
for r in results:
print(nlb.summarize(r))
Library Branch Codes
Key locations: TRL (Lee Kong Chian Reference Library), WRL (Woodlands Regional Library), CMPL (Chinatown Public Library), AMKPL (Ang Mo Kio), BIPL (Bishan), JWPL (Jurong West), TPPL (Tampines).
API Etiquette
- Free API key required (apply at https://go.gov.sg/nlblabs-form)
- Rate limits enforced (429 on excess) — exact thresholds undocumented
- Data licensed under Singapore Open Data Licence
Related Skills
- hathitrust-catalog: Use ISBNs from NLB to check HathiTrust for digitized versions
- wikidata-search: Cross-reference NLB subjects with Wikidata entities
Resources
references/api_reference.md— Complete endpoint, parameter, and response field referencescripts/nlb_api.py— Python client with search, lookup, availability checking, and pagination
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
arxiv-search
Search arXiv for preprints and scholarly articles across physics, mathematics, computer science, quantitative biology, quantitative finance, statistics, electrical engineering, systems science, and economics. Supports field-specific queries (title, author, abstract, category), boolean logic, date filtering, and bulk retrieval with pagination.
loc-catalog
Search the Library of Congress digital collections via the loc.gov JSON API. Use this skill whenever the user wants to search LOC's digitized books, photos, maps, manuscripts, newspapers, audio, or film/video, look up items by LCCN, browse LOC collections, find primary sources with date range filters, or retrieve citations and download links for LOC materials. Also triggers when cross-referencing items found in other library catalogs against LOC holdings.
cjk-calendar
Convert between Chinese, Japanese, Korean, and Vietnamese lunisolar calendar dates and Gregorian/Julian dates. Use when the user needs to look up historical East Asian dates, convert era names (年號) like 康熙, 天保, 崇禎 to Western dates, compute sexagenary cycle (干支) day/month/year, or work with Julian Day Numbers. Supports ~220 BCE to 1945 CE with 1,637 eras and 131,808 lunar month records. Runs entirely locally with a SQLite database.
chgis-tgaz
Query the China Historical GIS (CHGIS) Temporal Gazetteer (TGAZ) API to search for historical Chinese placenames from 222 BCE to 1911 CE. Use this skill when searching for information about historical Chinese places, administrative units, or geographic locations during the dynastic period. Applicable for queries about historical place names, administrative hierarchies, or when users mention specific Chinese locations with historical context.
tgaz-query
Query and explore the TGAZ (Temporal Gazetteer) SQLite database of 82,000+ historical Chinese placenames spanning 763 BCE to 1911 CE. Use this skill whenever the user asks about historical Chinese places, administrative geography, dynastic jurisdictions, place name evolution, or wants to query tgaz.db. Also trigger when the user mentions CHGIS, TGAZ, historical gazetteer, Chinese historical GIS, or asks questions like "what was X called in dynasty Y", "what counties existed in year Z", "where was X located", or any spatial/temporal query about Chinese historical geography. This skill is relevant even for casual questions like "tell me about ancient Chang'an" or "Tang dynasty cities near the Yellow River".
cbdb-local
Query the China Biographical Database (CBDB) locally via SQLite for biographical data on 656K+ historical Chinese figures from the 7th century BCE through the 19th century CE. Use when searching for Chinese historical figures, scholars, officials, or literary figures — their biographical details, family/kinship networks, official postings, social associations, examination records, or addresses. Runs entirely locally after initial database download (~556 MB). Faster and more flexible than the API version.
Didn't find tool you were looking for?