TLE
Two-line element sets for orbiting satellites
Serves NORAD two-line element (TLE) orbital data for satellites by catalog number, including the familiar line1/line2 pair and a timestamp. Query 25544 and you get the ISS's current elements. Ideal for orbit-propagation and satellite-tracking projects.
GET https://tle.ivanstanojevic.me/api/tle/25544
{
"@type": "Tle",
"satelliteId": 25544,
"name": "ISS (ZARYA)",
"date": "2026-07-04T19:09:56+00:00",
"line1": "1 25544U 98067A 26185.79857271 .00009725 00000+0 18504-3 0 9991",
"line2": "2 25544 51.6303 212.9192 0006761 256.1012 103.9224 15.48894567574489"
}curl "https://tle.ivanstanojevic.me/api/tle/25544"const res = await fetch("https://tle.ivanstanojevic.me/api/tle/25544");
const data = await res.json();
console.log(data);import requests
res = requests.get("https://tle.ivanstanojevic.me/api/tle/25544")
print(res.json())/api/tle/25544PROBEDTwo-line element sets for orbiting satellites
/api/tleTle — documented GET route.
/api/tle/1Tle details by ID (example: 1).
/apiApi — documented GET route.
/api/1Api details by ID (example: 1).
/api?limit=10Api — documented GET route.
We probe a documented GET and expect 2xx JSON — full uptime and health score. Export includes every documented route below.
Stable. No schema drift observed since monitoring began — the response shape has not changed under our checks.
TLE: common questions
Is TLE free to use?
Yes — TLE is a free science & space API. Free tier: Free — limits not published. Whether the free tier allows commercial use is unclear — check the provider docs.
Does TLE need an API key?
No — TLE needs no API key or signup. You can call it straight away; rate limits still apply (Retry-After: 14400s).
Can I call TLE from the browser?
Yes — TLE returns CORS headers over HTTPS, so front-end code can fetch it directly with no backend proxy. Use the fetch snippet on this page, or hit "Run live" to try it now.
Is TLE up right now?
As of our last scheduled check, TLE is healthy with 88.2% uptime over 90 days and a 1090 ms median response. We re-probe it every sweep — the status badge and uptime chart above always show the latest.