TELEMEX

API

POST a log. Get CSV back.

Send a .nmf, .nmfs or .trp drive-test log to the Telemex API and get the extracted measurements back as CSV — the same parser behind the Log Opener, with no Actix Analyzer or TEMS Discovery in the loop and no browser either. It reads only the parameters you asked for, and works through logs in parallel.

Quickstart

One request, one file

Request
curl -X POST https://api.telemex.ir/v1/logs \
  -H "Authorization: Bearer $TELEMEX_API_KEY" \
  -F "file=@drive-2026-08-15.nmf" \
  -o measurements.csv
Response
timestamp,lat,lon,cell_id,rsrp,rsrq,sinr
2026-08-15T09:14:02Z,35.7219,51.3347,10241,-88,-9.5,12.4
2026-08-15T09:14:03Z,35.7220,51.3349,10241,-91,-10.1,10.8

Throughput

Why it comes back quickly

Only the parameters you asked for

The extractor pulls the parameters you defined and skips the rest of the log. Most of a drive-test capture is messages a given report never refers to, and none of that is decoded.

Logs in parallel, not in turn

A batch is worked through side by side rather than one file after another, so it finishes in roughly the time the slowest log takes rather than the sum of all of them.

No desktop tool in the loop

Nothing waits on an Actix or TEMS Discovery seat being free, or on an operator to open a file — the request is answered by the same service that scales out when the queue grows.

Access

Getting a key

API keys are issued on request. Tell us about the integration you have in mind and we will set one up and send it over.

See Telemex on your own data

Request a demo and we will walk through your logs, reports and ticket workflow.

Request a demo