Discover/jgw.aynu.edu.cn API
live

jgw.aynu.edu.cn APIjgw.aynu.edu.cn

Access oracle bone inscriptions, characters, radicals, and collections from the Yinqi Wenyuan database at Anyang Normal University via a structured REST API.

Endpoints
5
Updated
14d ago
Try it
Page number for pagination.
Search term for inscription name/片号 (e.g. '合', '拼')
Filter by collection/book code from get_collections endpoint (e.g. '010001H'). Omitting re
api.parse.bot/scraper/5a3d513d-906e-4de4-9455-65d043c4f1de/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/5a3d513d-906e-4de4-9455-65d043c4f1de/search_inscriptions?page=2&query=%E6%8B%BC' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Search for oracle bone inscriptions (rubbings/bones) in the 著录库 database. Returns paginated results with basic metadata and image URLs.

Input
ParamTypeDescription
pageintegerPage number for pagination.
queryrequiredstringSearch term for inscription name/片号 (e.g. '合', '拼')
book_codestringFilter by collection/book code from get_collections endpoint (e.g. '010001H'). Omitting returns results across all collections.
Response
{
  "type": "object",
  "fields": {
    "items": "array of inscription objects with id, name, number, type, source, image_url, and detail_url_path",
    "pagination": "object with current_page, total_count, and total_pages"
  },
  "sample": {
    "data": {
      "items": [
        {
          "id": "108547",
          "name": "合1",
          "type": "拓片",
          "number": "",
          "source": "甲骨文合集",
          "image_url": "http://jgw.aynu.edu.cn/File/GetFirstSmallPic?dbId=34&recordId=108547&key=K5U3keEBpCT1f3TdQSh1hw%3d%3d",
          "detail_url_path": "/Detail?dbID=34&dbName=BONE&sysID=108547"
        }
      ],
      "pagination": {
        "total_count": 61552,
        "total_pages": 5130,
        "current_page": 1
      }
    },
    "status": "success"
  }
}

About the jgw.aynu.edu.cn API

This API exposes 5 endpoints covering the Yinqi Wenyuan (殷契文渊) digital platform's oracle bone inscription database, including paginated rubbing searches, character font lookups, and radical indices. The search_inscriptions endpoint returns image URLs, piece numbers, and source metadata for entries in the 著录库, while search_characters provides Unicode IDs, pinyin, and traditional and simplified meanings for oracle bone script characters.

Inscription and Collection Data

The search_inscriptions endpoint queries the 著录库 rubbing database. Required parameter query accepts a piece-number fragment or name (for example or ). Optional book_code narrows results to a specific collection; valid codes come from the get_collections endpoint, which returns every collection's id, name, code, and grade. Each inscription result includes id, name, number, type, source, an image_url for the rubbing scan, and a detail_url_path. Pagination is handled via the page parameter; the response's pagination object exposes current_page, total_count, and total_pages.

Character Font Database

The search_characters endpoint queries the 字形库. Set type=1 to search by a modern Chinese character or type=3 to search by pinyin string. Results include unicode_id, oracle_bone_char_hex, meaning_traditional, meaning_simplified, pinyin, and bone_reference. For deeper detail, pass a unicode_id (for example U608C1) to get_character_detail, which returns the character's citation sources array (each with type_code and content), related_chars as a comma-separated string of related IDs, and oracle_bone_char_hex where available.

Radicals Index

The get_radicals endpoint returns the full list of radical identifiers used to index oracle bone characters. Each entry carries a code (hex string) and a name in U-prefixed format, reflecting Unicode Private Use Area assignments used by the platform's font system. These codes align with the unicode_id values returned by search_characters and get_character_detail, making them useful for building radical-based browsing or filtering logic on top of the character endpoints.

Common use cases
  • Build a searchable index of oracle bone rubbing images using image_url and piece-number fields from search_inscriptions.
  • Map modern Chinese characters to their oracle bone script forms by combining search_characters meaning_traditional and oracle_bone_char_hex fields.
  • Generate a radical-browsing interface for oracle bone script using codes from get_radicals as navigation anchors.
  • Filter inscription searches by specific published collections using book_code values retrieved from get_collections.
  • Build a citation reference tool using sources arrays from get_character_detail to trace scholarly references for individual characters.
  • Cross-reference related oracle bone characters by parsing the related_chars field returned in get_character_detail.
  • Support linguistic research tools by exposing pinyin and bone_reference data alongside traditional/simplified meanings from search_characters.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does Yinqi Wenyuan (jgw.aynu.edu.cn) offer an official developer API?+
Anyang Normal University's Yinqi Wenyuan platform does not publish a public developer API or documented data access program. The Parse API provides structured programmatic access to the platform's inscription and character data.
What does `get_character_detail` return beyond what `search_characters` provides?+
search_characters gives summary fields: unicode_id, oracle_bone_char_hex, meaning_traditional, meaning_simplified, pinyin, and bone_reference. get_character_detail adds a sources array with per-citation type_code and content entries, a related_chars comma-separated list, and the full oracle_bone_char_hex where available — useful when you need scholarly citation data rather than just the character summary.
Can I retrieve the full rubbing detail page for an inscription, not just summary metadata?+
The search_inscriptions endpoint returns summary-level fields including image_url and detail_url_path, but does not currently expose a dedicated detail endpoint that returns transcription text, excavation metadata, or associated interpretations for individual rubbings. The API covers inscription search results and collection listings. You can fork it on Parse and revise it to add a rubbing detail endpoint covering those additional fields.
Is there a way to browse all inscriptions in a collection without a search term?+
search_inscriptions requires a query string; it does not support open-ended browsing that returns all entries in a collection when no search term is provided. You can retrieve valid book_code values from get_collections and pair them with a broad query term to narrow scope, but full collection enumeration without a query is not currently supported. You can fork this API on Parse and revise it to add an endpoint that lists all inscriptions for a given collection code.
How does pagination work in `search_inscriptions`?+
Pass an integer page parameter to move through result pages. Each response includes a pagination object with current_page, total_count, and total_pages, so you can iterate through all results programmatically without guessing the total number of pages.
Page content last updated . Spec covers 5 endpoints from jgw.aynu.edu.cn.
Related APIs in EducationSee all →
arxiv.org API
Search and discover academic research papers on arXiv using keywords, authors, titles, categories, and dates, then access detailed metadata for any paper. Browse the complete arXiv category taxonomy to explore research across different scientific disciplines.
maxpreps.com API
Access high school sports data from MaxPreps. Search for schools, retrieve team rosters and schedules, look up athlete profiles, and browse national or state rankings across all sports.
athletic.net API
Search and analyze cross country and track & field performance data across the US, including athlete profiles, meet results, team rosters, and rankings. Access comprehensive meet information, historical records, and state-level competition data to track athlete progress and discover top performers.
allaboutcircuits.com API
Access educational electronics content from All About Circuits, including technical articles, circuit diagrams, textbook volumes, and forum discussions organized by category. Search and browse the latest resources, view detailed articles, explore engineering tools, and find answers across their community forums.
illinoisreportcard.com API
Search and analyze comprehensive performance data for Illinois public schools, districts, and the state, including academic achievements in ELA, math, and science, student demographics, teacher and administrator information, school finances, and environmental conditions. Compare schools side-by-side, track growth metrics, and access accountability ratings and school highlights to make informed decisions about education quality.
noor-book.com API
Search and discover books across 1,800+ categories in the Noor Book library, retrieving detailed information about titles, authors, biographies, and book metadata. Access comprehensive author profiles and browse one of the largest Arabic and English digital book collections with over 289,000 authors.
quizbowlpackets.com API
Search and browse thousands of quizbowl question sets across all competition levels, then access detailed metadata like difficulty, subjects, and download links for each packet. Find the perfect practice materials for High School, Collegiate, Middle School, or Pop Culture quizbowl competitions.
amberstudent.com API
Search student accommodation listings across popular cities and access comprehensive property information including room types, pricing trends, and tenant reviews. Get detailed insights into student housing options to compare amenities, prices, and community feedback all in one place.