Skip to main content
POST
/
v1
/
estimate
Estimate import tax for a listing
curl --request POST \
  --url https://import.kopagari.com/v1/estimate \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://www.beforward.jp/toyota/vitz/sc123456/"
}
'
{
  "input": {
    "url": "<string>"
  },
  "car": {
    "make": "TOYOTA",
    "model": "VITZ",
    "modelCode": "SJ5",
    "rawModelCode": "DBA-SJ5",
    "version": "S",
    "year": 2017,
    "engine_cc": 1490,
    "fuel": "PETROL",
    "fobPriceUSD": 8500,
    "cfPriceUSD": 11234,
    "images": [
      "<string>"
    ],
    "conditionReportUrl": "<string>"
  },
  "matched": {
    "make": "TOYOTA",
    "makeId": 1500298,
    "modelBody": "VITZ - SJ5 - SEDAN",
    "matchReason": "<string>",
    "adjustments": [
      {
        "field": "yom",
        "from": "<unknown>",
        "to": "<unknown>",
        "reason": "TRA has no 2013 entry for this model; using nearest year 1999."
      }
    ],
    "yom": 2017,
    "country": "JAPAN",
    "fuelType": "PETROL",
    "capacityBand": "1501 - 2000 CC"
  },
  "tax": {
    "referenceNumber": "25264120160",
    "make": "<string>",
    "model": "<string>",
    "bodyType": "SUV",
    "modelBody": "<string>",
    "yom": 123,
    "country": "<string>",
    "fuelType": "<string>",
    "engineCapacity": "1501 - 2000 CC",
    "cifInUSD": "2,439.00",
    "importDutyInUSD": "609.75",
    "exiseDutyInUSD": "152.44",
    "exiseDutyDueToAgeInUSD": "914.63",
    "vatInUSD": "797.86",
    "customProcessingFeeInUSD": "14.63",
    "railwayDevLevyInUSD": "48.78",
    "indDevLevy": "0.00",
    "hivRespLevy": "150,000.00",
    "totalImportTaxesInUSD": "2,538.08",
    "totalImportTaxesInTZS": "6,512,672.49",
    "vehicleRegistrationFeeInTZS": "500,000.00",
    "totalTaxesInTZS": "7,162,672.49",
    "quarter": 4,
    "year": 2025
  },
  "cached": true
}

Authorizations

Authorization
string
header
required

Send your API key as Authorization: Bearer <key>.

Body

application/json
url
string<uri>
required

A vehicle listing URL from a supported auction site.

Response

Estimate result

input
object
car
object

Vehicle attributes scraped from the listing.

matched
object

How the scraped vehicle was resolved against the TRA database.

tax
object

The TRA tax breakdown. Monetary fields are formatted strings (e.g. "2,439.00").

cached
boolean

Whether the result was served from cache.