Exit Nodes
Last updated
This endpoint provides a list of known Tor exit nodes currently active on the Tor network.
Endpoint:
https://api.elliott.diy/v1/tor/exit
You can choose between plain text or JSON output:
Plaintext (default) Each IP is listed on a new line.
https://api.elliott.diy/v1/tor/exitJSON
Use the ?format=json query parameter:
https://api.elliott.diy/v1/tor/exit?format=json{
"ips": [
"185.220.101.4",
"185.220.101.9"
]
}The list is pulled from the Tor Project's bulk exit list.
This data is cached for 6 hours to reduce load and provide fast responses.
Useful for filtering, blocking, or analyzing Tor-origin traffic.
Last updated