Authentication

All requests to the Searoutesnav API must be authenticated using an API key. This key is unique to your account and should be kept secure.

How to use your API key

Pass the API key in the request header x-api-key when making calls to the API.

curl --request GET \ --url https://api.searoutesnav.com/geocoding/v1/all \ --header "x-api-key: YOUR_API_KEY" \ --header "accept: application/json"

Example Response

{ "status": 200, "message": "Request successful", "data": [...] }

Notes

  • Your API key is tied to your account and plan.
  • Keep your key private and never expose it in public code repositories.
  • You can revoke or regenerate keys from your dashboard at any time.