Skip to main content

Developers · live

API playground.

No signup required. Paste a company name, see the exact request and the live response, then copy a working curl or Python snippet for your stack. Limited to 3 results per call against a shared demo key.

Endpoint
MethodGET
Path/v1/employers
AuthX-Api-Key
Demo limit3 results
curl
curl -H "X-Api-Key: YOUR_API_KEY" \
  "https://api.fastdol.com/v1/employers?name=Walmart&limit=3"
Python
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.

Higher quotas

Ready for full result sets and batch lookups?

The playground caps at 3 results and is rate-limited by IP. A free API key gives you 50 lookups/month, full result sets, batch endpoints, and CSV upload. For commercial volumes or licensed dataset access, email ben@fastdol.com.