Discover/nzsl.nz API
live

nzsl.nz APInzsl.nz

Access 5000+ New Zealand Sign Language signs via 9 endpoints. Search by English or Māori keyword, filter by topic, handshape, location, and retrieve video URLs.

Endpoints
9
Updated
14d ago
Try it
Page number for pagination.
Search keyword in English or Māori (e.g. 'hello', 'water').
Topic category filter. Use the decoded tag value from list_topics (e.g. 'Animals', 'Action
Usage filter (e.g. 'archaic', 'informal').
Body location ID filter.
Handshape ID filter (e.g. '1.1.1').
Location group ID filter.
api.parse.bot/scraper/32e15753-dcec-46d1-97a3-d1a0c5e8ad76/<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/32e15753-dcec-46d1-97a3-d1a0c5e8ad76/search_signs?query=hello' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 9 totalclick to expand

Search for signs by keyword (English or Māori) with optional filters. Returns paginated results. When no query or filters are provided, returns all signs.

Input
ParamTypeDescription
pageintegerPage number for pagination.
querystringSearch keyword in English or Māori (e.g. 'hello', 'water').
topicstringTopic category filter. Use the decoded tag value from list_topics (e.g. 'Animals', 'Actions and activities', 'Direction, location and spatial relations').
usagestringUsage filter (e.g. 'archaic', 'informal').
locationstringBody location ID filter.
handshapestringHandshape ID filter (e.g. '1.1.1').
location_groupstringLocation group ID filter.
Response
{
  "type": "object",
  "fields": {
    "results": "array of sign summaries with sign_id, english_name, maori_name, word_class, video_url, drawing_url",
    "pagination": "object with current_page and total_pages, or null when no pagination exists"
  },
  "sample": {
    "data": {
      "results": [
        {
          "sign_id": "1301",
          "video_url": "https://nzsl-signbank-media-production.s3.amazonaws.com/glossvideo/1301/hello.1301.main_glosses.sp.r480x360.mp4",
          "maori_name": null,
          "word_class": null,
          "drawing_url": "https://nzsl-signbank-media-production.s3.amazonaws.com/glossvideo/1301/hello-1301-high_resolution.png",
          "english_name": "goodbye, hello"
        }
      ],
      "pagination": {
        "total_pages": 1,
        "current_page": 1
      }
    },
    "status": "success"
  }
}

About the nzsl.nz API

The NZSL Dictionary API provides structured access to over 5000 New Zealand Sign Language signs across 9 endpoints, covering sign search, detailed sign data, topic browsing, and reference pages. The get_sign_detail endpoint returns main video URLs, slow-motion video URLs, handshape images, location images, Māori translations, and example sentences with English glosses — all keyed by a numeric sign ID obtained from search_signs.

Search and Filter Signs

The search_signs endpoint accepts a query string in English or Māori, plus optional filters for topic, usage, handshape, location, and location_group. Results are paginated and each item in the results array includes sign_id, english_name, maori_name, word_class, video_url, and drawing_url. Topic values for the filter come from list_topics, which returns each topic's tag (the exact string to pass as the topic parameter) and its human-readable name. To page through the full dictionary without any filters, use get_all_signs with the page parameter.

Sign Detail and Reference Data

get_sign_detail accepts a numeric sign_id and returns the most complete data for a single sign: main_video_url and slow_video_url for playback, arrays of handshapes and locations as image URLs, maori_names as an array, and an examples array where each item carries nzsl_gloss, english_translation, and video_url. Three static reference endpoints cover fingerspelling, numbers, and classifiers. get_alphabet_page returns per-letter image_url values and demonstration_videos. get_numbers_page and get_classifiers_page both return categorized items arrays with label, optional sign_id, and image_url, organized under a title field.

Discovery Utilities

get_sign_of_the_day returns a daily-featured sign with its name, sign_id, video_url, and drawing_url — useful for vocabulary-building features or daily digest integrations. get_search_autocomplete accepts a term parameter and returns matching sign glosses, supporting typeahead search interfaces.

Common use cases
  • Build an NZSL learning app that plays main and slow-motion videos from get_sign_detail for each vocabulary item.
  • Populate a topic-based browse screen using list_topics tags as filters passed to search_signs.
  • Implement a typeahead search field using get_search_autocomplete to suggest sign names as the user types.
  • Display a daily sign widget by polling get_sign_of_the_day for the featured sign video and drawing.
  • Create a fingerspelling reference tool using the alphabet_items and demonstration_videos from get_alphabet_page.
  • Filter signs by handshape ID or body location to support linguistic research or structured NZSL lessons.
  • Export English–Māori–NZSL trilingual glossaries by iterating get_all_signs and enriching with maori_names from get_sign_detail.
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 nzsl.nz have an official developer API?+
The New Zealand Sign Language Dictionary is maintained by Victoria University of Wellington and Deaf Aotearoa. There is an open-source codebase available on GitHub at github.com/ODNZSL/nzsl-dictionary, but no publicly documented REST API intended for third-party consumption. The Parse API provides a structured interface to the same dictionary data.
What does `get_sign_detail` return beyond what appears in search results?+
search_signs and get_all_signs return summary fields: sign_id, english_name, maori_name, word_class, video_url, and drawing_url. get_sign_detail adds slow_video_url, an examples array (each with nzsl_gloss, english_translation, and video_url), handshapes as an array of image URLs, locations as an array of image URLs, and maori_names as a full array rather than a single value.
Can I filter signs by multiple topics or handshapes simultaneously?+
search_signs accepts one value per filter parameter at a time — a single topic tag, a single handshape ID, and a single location ID. Multi-value filtering in one request is not currently supported. You can fork the API on Parse and revise it to add a multi-filter endpoint if your use case requires it.
Does the API expose user-contributed content such as regional variation videos or community submissions?+
Not currently. The API covers the core dictionary signs, their videos, drawings, examples, and reference pages for alphabet, numbers, and classifiers. Community-submitted or regional variant videos are not exposed as distinct fields. You can fork the API on Parse and revise it to add an endpoint targeting that content if it becomes available.
How fresh is the sign data, and does the pagination cover the full dictionary?+
The data reflects the current published state of the NZSL Dictionary at nzsl.nz. The get_all_signs endpoint returns current_page and total_pages in its pagination object, allowing you to iterate through the full sign set page by page. search_signs also returns the same pagination structure, or null when results fit a single page.
Page content last updated . Spec covers 9 endpoints from nzsl.nz.
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.