API Playground

Try the FastDOL API live — no signup required. Search 2.3M+ employer compliance profiles, see the exact request and response, and copy working snippets for your stack.

curlbash
curl -H "X-Api-Key: YOUR_API_KEY" \
  "https://api.fastdol.com/v1/employers?name=Walmart&limit=3"
Pythonpython
import requests

resp = requests.get(
    "https://api.fastdol.com/v1/employers",
    headers={"X-Api-Key": "YOUR_API_KEY"},
    params={
    "name": "Walmart",
    "limit": "3"
},
)
resp.raise_for_status()
print(resp.json())
Response
Click "Run" to call the API.

Ready for more?

The playground shows up to 3 results and is rate-limited. A free API key gives you 50 lookups/month, full result sets, batch endpoints, and CSV upload.