For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
SupportLog InSign Up
GuidesAPI Reference
GuidesAPI Reference
  • Tax Rates
    • GETGet Tax Rates (v6.0)
  • Account
    • GETGet Account Metrics (v6.0)
  • Data
    • GETGet TIC Codes
    • POSTSearch TIC Codes
    • POSTRecommend TIC Codes
    • GETGet TIC Search JSON Schema
  • System
    • GETHealth Check
    • GETGet System Metadata
Logo
SupportLog InSign Up
Data

Search TIC Codes

POST
/search/tic
POST
/search/tic
$curl -X POST https://api.ziptax.com/search/tic \
> -H "X-API-KEY: <apiKey>" \
> -H "Content-Type: application/json" \
> -d '{
> "query": "Ceramic & Pottery Kilns"
>}'
1{
2 "query": "Ceramic & Pottery Kilns",
3 "results": [
4 {
5 "name": "Books",
6 "tic": "12345"
7 }
8 ],
9 "$schema": "https://api.ziptax.com/schemas/ticsearch",
10 "nextCursor": "string"
11}

Searches Taxability Information Codes (TICs) by keyword or phrase and returns ranked matches.

Was this page helpful?
Previous

Recommend TIC Codes

Next
Built with

Authentication

X-API-KEYstring
API key in header

Request

This endpoint expects an object.
querystringRequired1-1024 characters
Keyword or phrase to match against TIC labels and descriptions.

Response

OK
querystring
Echo of the input query.
resultslist of objects
Ranked TIC results, most relevant first.
$schemastringRead-onlyformat: "uri"
URL to the JSON Schema describing this response.
nextCursorstring
Opaque cursor for retrieving the next page of results. Absent or empty when there are no more results.

Errors

400
Bad Request Error
401
Unauthorized Error
429
Too Many Requests Error
500
Internal Server Error
502
Bad Gateway Error