Agent skill
jbdb-api
Query the Japan Biographical Database (JBDB) API to retrieve biographical data about historical Japanese figures. Use this skill when searching for information about Japanese historical figures, samurai, monks, artists, poets, or other individuals. Applicable for queries about biographical details, kinship relations, non-kinship associations, events, personal history, occupations, or when users mention specific Japanese names or JBDB person IDs.
Install this agent skill to your Project
npx add-skill https://github.com/kltng/humanities-skills/tree/main/jbdb-api
SKILL.md
JBDB API
Query the Japan Biographical Database for historical Japanese figures via the LoopBack REST API.
Critical: Things Claude Won't Know Without This Skill
API base URL:
https://jbdb.jp/api
Response structure is flat (unlike CBDB's nested format):
GET /BiogMains → returns array of person objects directly
GET /BiogMains/{id} → returns a single person object
LoopBack filter syntax — all query filtering uses a JSON filter parameter:
GET /BiogMains?filter={"where":{"cName":"松尾芭蕉"}}
Name fields: Each person has three name variants:
cName— Japanese characters (e.g., 松尾芭蕉)cNameFurigana— Furigana reading (e.g., まつおばしょう)cNameRomaji— Romanized name (e.g., Matsuo Basho)
Encoding: Pass Japanese characters as UTF-8 directly — do not URL-encode into hex.
Python Script
Use scripts/jbdb_api.py for programmatic access (zero dependencies):
from scripts.jbdb_api import JBDBAPI
api = JBDBAPI()
# By name (Japanese, furigana, or romaji — searches all name fields)
persons = api.search_by_name("松尾芭蕉")
persons = api.search_by_name("Matsuo Basho")
# By ID (most precise)
person = api.query_by_id(12345)
# Extract structured data
alt_names = api.get_alt_names(person_id) # alternative names
kinship = api.get_kinship(person_id) # family relations
nonkinship = api.get_nonkinship(person_id) # non-family associations
events = api.get_events(person_id) # events involving this person
history = api.get_personal_history(person_id) # personal history records
# Formatted summary
print(api.summarize(person))
The script handles rate limiting, retries, and LoopBack filter construction automatically.
Quick Reference
Search by Japanese name:
https://jbdb.jp/api/BiogMains?filter={"where":{"cName":"松尾芭蕉"}}
Search by romaji (regex, case-insensitive):
https://jbdb.jp/api/BiogMains?filter={"where":{"cNameRomaji":{"regexp":"/Matsuo/i"}}}
Search across all name fields:
https://jbdb.jp/api/BiogMains?filter={"where":{"or":[{"cName":{"regexp":"/芭蕉/i"}},{"cNameFurigana":{"regexp":"/ばしょう/i"}},{"cNameRomaji":{"regexp":"/Basho/i"}}]}}
Query by ID:
https://jbdb.jp/api/BiogMains/12345
Get kinship for a person:
https://jbdb.jp/api/KinData?filter={"where":{"cPersonid":12345}}
Priority: ID > exact Japanese name > regex search (regex may return many matches).
Handling Results
Multiple results: Use additional context (dates, occupation, place) to identify the correct person. If ambiguous, present options to the user.
Empty results: Returns [] for find operations or 404 for findById. Try alternative name forms (kanji vs romaji vs furigana).
Key BiogMain fields: cPersonid, cName, cNameFurigana, cNameRomaji, cFemale, cByNengoYear, cByNengoCode, cDyNengoYear, cDeathAge, cOccupationCodes, cStatusCodes, cPlaceCode, cNotes
Lookup Tables
The API uses numeric codes that map to descriptive values. Use these endpoints to resolve codes:
| Code Field | Lookup Endpoint | Description Fields |
|---|---|---|
cOccupationCodes |
/OccupationCodes/{id} |
cOccupationDesc, cOccupationDescTrans |
cStatusCodes |
/StatusCodes/{id} |
cStatusDesc, cStatusDescTrans |
cPlaceCode |
/PlaceCodes/{id} |
cPlaceName, cPlaceNameRomaji |
cByNengoCode |
/NengoCodes/{id} |
cNengoName, cNengoNameRomaji |
cKinCode |
/KinshipCodes/{id} |
cKinrel, cKinrelTrans |
cNonkinCode |
/NonkinshipCodes/{id} |
cNonkinrel, cNonkinrelTrans |
Related Skills
- cbdb-api: Sister project for Chinese historical figures — similar concept, different API structure
- chgis-tgaz: Look up associated locations in the CHGIS Temporal Gazetteer
- wikidata-search: Cross-reference JBDB figures with Wikidata for external identifiers
Resources
references/api_reference.md— Complete endpoint specs, all parameters, response schemasscripts/jbdb_api.py— Python client with rate limiting and structured data extraction- JBDB Project — Official project website
- API Spec — Swagger/OpenAPI documentation
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?