Skip to content
This repository has been archived by the owner on Apr 26, 2022. It is now read-only.
Robert edited this page Aug 11, 2020 · 1 revision

FTTx.gr API example requests

https://api.fttx.gr/api/v1/cabinets - GET cabinets (with pagination, per page limit is 25 by default)

https://api.fttx.gr/api/v1/cabinets?limit=50 - GET cabinets with a limit of 50 cabinets per page

https://api.fttx.gr/api/v1/cabinets?limit=100&page=5 - GET cabinets at page 5 with a limit of 100 cabinets

https://api.fttx.gr/api/v1/cabinets/5f2eb340c94b8b4b23edd05f - GET Cabinet by ID

https://api.fttx.gr/api/v1/cabinets?isp=OTE - GET Cabinets by ISP (OTE, Vodafone, WIND, RURCON)

https://api.fttx.gr/api/v1/cabinets?address[zipcode]=183 45 - GET Cabinets by Zip Code (must be exactly as stored in the database with space)

https://api.fttx.gr/api/v1/cabinets?verified=true - GET Human verified Cabinets (will return none, for now)

...and so on. You can use the same logic to get cabinets depending on their value. More example requests to come.

Clone this wiki locally