temsor API
← Whole catalogue

Validation

Part of the catalogue. The same key, envelope and billing cover every other endpoint too.

Turkish ID & Number Validation

  • No account needed to try any endpoint on this page.
  • Deterministic endpoints answer from cache in single-digit milliseconds.
  • Every response carries a receipt: credits charged, cache status, duration.
POST/v1/tr/validate
{
  "value": "TR33 0006 1005 1978 6457 8413 26"
}
no request sent yet
Press Run to call the live API from your browser.
1endpoints
data points banked
time series
median response

Why this exists

Built for hostile input

A Turkish address arrives as "Cd." or "Cad." or "Caddesi", with the flat number glued to the building number. Generic parsers drop half of it silently. This one tells you what it could not place.

History cannot be backfilled

The exchange-rate archive grows every business day and each point keeps its source URL and content hash. A competitor can read today’s bulletin too — nobody can produce last quarter’s.

You only pay for work

Repeated inputs come from cache and cost zero credits. If a response ever fails its own schema, the call is refunded automatically.

Endpointsexpand any row to see the parameters and call it live

Validation1

/v1/tr/validate Turkish ID & Number Validation deterministic 1 credit

Validates Turkish national ID, tax number, IBAN, licence plate, IMEI and barcodes from one endpoint, with type auto-detection.

Goes past a yes/no: resolves the bank behind an IBAN, the province behind a licence plate and the GS1 country prefix behind a barcode. Pure local computation — no upstream service is called, so latency is microseconds and the answer never changes for the same input.

Parameters

value* string Doğrulanacak değer.
type "auto" | "tckn" | "vkn" | "iban" | "plate" | "imei" | "gtin" Belirtilmezse biçimden otomatik tespit edilir. default "auto"
POST/v1/tr/validate
{
  "value": "TR33 0006 1005 1978 6457 8413 26"
}
no request sent yet
Press Run to call the live API from your browser.

Pricingone key covers every endpoint

Free
Free
credits
2,000
Rate limit
2/s
Starter
$19/mo
credits
50,000
Rate limit
10/s
most picked
Pro
$79/mo
credits
300,000
Rate limit
30/s
Scale
$299/mo
credits
2,000,000
Rate limit
100/s

Credits are consumed per call and cache hits are free. Requests without a key run on a narrow per-IP demo quota so you can evaluate before signing up.

Quickstart

cURL

curl -s https://api.temsor.com/v1/tr/validate \
  -H "content-type: application/json" \
  -H "x-api-key: fk_live_…" \
  -d '{"value":"TR33 0006 1005 1978 6457 8413 26"}'

JavaScript

const res = await fetch("https://api.temsor.com/v1/tr/validate", {
  method: "POST",
  headers: { "content-type": "application/json", "x-api-key": KEY },
  body: JSON.stringify({"value":"TR33 0006 1005 1978 6457 8413 26"})
});
const { data } = await res.json();

Python

import httpx
r = httpx.post("https://api.temsor.com/v1/tr/validate",
    headers={"x-api-key": KEY},
    json={"value":"TR33 0006 1005 1978 6457 8413 26"})
data = r.json()["data"]