Graphql schema documentation

INLT Public API

link Getting started

Welcome to INLT's API for US Customs brokerage. This short guide will walk you through making your first request.

Our API uses GraphQL, which you can learn how to use here. We recommend using Insomnia as a GraphQL client during testing.

You will receive 1 test and 1 production API key. One of these keys must be passed in the x-api-key header of each request. The test key will simulate the responses you should expect to receive in production.

Using the test API key and your preferred GraphQL client, send the following payload to our endpoint:
{ search(query: "furniture") { results { title objectType field id highlight } } }
This performs the search query, returning a list of HTS numbers related to furniture. You can learn more about the query string format here.

We can follow this up with an htsNumber query to get more details:
{ htsNumber(number: "9403.90.7010") { id number text uom rateString additionalHTS additionalHTSNumber } }
Congratulations, you are on the way to automating all of your customs brokerage! You can reach us at support@inlt.com, we are happy to help!

link GraphQL Schema definition