Skip to main content

API Playground

Test eCore endpoints without writing any code using the hosted API Playground.

Testing Locally With cURL

If you prefer working from a terminal, every endpoint page in this reference includes a copy-pasteable cURL example. Replace YOUR_API_TOKEN with your real token and run:

# Example — search DataCore records
curl -X GET \
"https://app.ecoreservice.com/backend/api/v1/external/search/?industry=Technology&limit=5" \
-H "Authorization: Token YOUR_API_TOKEN"

Testing With Postman / Insomnia / HTTPie

Set the following on every request:

  • Header: Authorization: Token YOUR_API_TOKEN
  • Base URL: https://app.ecoreservice.com/backend/api/v1/
  • Content-Type: application/json for POST requests with a JSON body, or multipart/form-data for file uploads.

Tips

  • Save your token as an environment variable in Postman or your shell so you don't have to paste it on every request.
  • Watch the remaining_credits field in enrichment responses to track your wallet balance as you test.
  • Search Records is free — use it as a no-cost way to validate your token and explore filter combinations before spending credits on Unlock or Enrichment.