Documentation
API Quickstart
Use this guide to make your first request to the Tungaloy Catalog Search API.
Which Endpoint Should I Use?
| Goal | Endpoint |
|---|---|
| Ask a normal catalog question in natural language | POST /v1/catalog/smart-search |
| Use structured search parameters or inspect suggested filters | POST /v1/catalog/search |
| Look up one exact item number | GET /v1/catalog/items/{item_number} |
| Discover valid applications, series, or filter fields | GET /v1/catalog/metadata |
For most users, start with POST /v1/catalog/smart-search.
Authentication
Send your API key as a Bearer token.
Code
First Request
Code
What You Get Back
The response contains the original query, the catalog-search result, and workflow identifiers.
Code
When To Use Structured Search
Use POST /v1/catalog/search when you need raw fields for follow-up logic:
resultCountreturnedCounthasMorenextOffsetcolumnDefinitionsnextSuggestedFilters
Structured search is also better when your application already knows the exact fields and filters to apply.
Last modified on