Browse the API reference
Reference
Raw lists
Every program has a public plain-text URL: one host per line, no token, no sign-in. Open it in a browser or pipe it straight into your tooling.
URL patterns
- /raw/tesla.comevery host for one root domain
- /raw/tesla.com/newhosts first seen in the last 24 hours
- /raw/bugcrowdevery host across a platform
- /raw/bugcrowd/teslaevery host for one program on that platform
Options
format=txt|csv|json— plain hosts (default), CSV with first/last seen, or a JSON array.hours=N— window for the/newlists (default 24).scope=all|new|inactive— retired hosts included withinactive.active=false— include retired hosts in platform-wide lists.
Behaviour
Responses stream, so a program with hundreds of thousands of hosts starts writing immediately and never times out. Unknown domains and platforms return an empty body with status 404. The same handler is mirrored at /api/public/raw/… for callers that prefer the API prefix, and both allow cross-origin requests.
No key required
Raw lists are open and unlimited. Use the token-authenticated API when you need structured metadata, scans, stats or account endpoints.
curl
# plain host list, no token, no sign-in curl -s https://chaos.thescope.top/raw/tesla.com > tesla.txt # only what appeared in the last hour curl -s "https://chaos.thescope.top/raw/tesla.com/new?hours=1" # whole platform as CSV curl -s "https://chaos.thescope.top/raw/bugcrowd?format=csv" > bugcrowd.csv