In cryptography, MD5 (Message-Digest Algorithm 5) is considered obsolete. Since the discovery of collision attacks in the early 2000s (where two completely different files generate the identical MD5 hash), using MD5 for password storage or digital signatures creates severe security ...
RTSALL Developer Hub
Access our high-fidelity, verified geographic and reference datasets programmatically via simple JSON APIs.
Generate API Key
Create a free API key instantly to remove notice footers and raise your query limits.
API Key generated successfully!
rts_...
Copy and keep this key secret. Pass it via the
apikey query parameter or X-API-Key header.Endpoints Reference
GET
/api/states
GET
/api/holidays
GET
/api/time-zones
GET
/api/area-codes
Live API Console Explorer
Response Output:
JSON responses will display here...
Code Snippet Examples
curl -X GET "https://rtsall.com/api/states?apikey=YOUR_KEY" \
-H "Accept: application/json"
fetch("https://rtsall.com/api/states?apikey=YOUR_KEY")
.then(response => response.json())
.then(data => console.log(data));
import requestsurl = "https://rtsall.com/api/states"
params = {"apikey": "YOUR_KEY"}response = requests.get(url, params=params)
print(response.json())