Make an API Call

Performs an arbitrary authorized API call.

Required inputs

URL

Enter a path relative to https://api.foxentry.com/, e.g., /location/validate, to access the chosen API endpoint.

DataExplanation
/location/getAccess a wide range of public information about specific location.
/location/validateValidate address data and automatically correct most typos.
/location/localizeFind out which addresses and premises are nearby within a GPS radius.
/company/getAccess a wide range of company public information.
/company/validateValidate company data and automatically correct most typos.
/validate/phoneCheck the validity and existence of phone numbers.
/validate/emailCorrect, validate, and retrieve information about emails, even if they contain typos.
/validate/nameValidate names and surnames and automatically correct most typos.

Method

DataContent
PostThis method is used for sending data and is primarily intended for operations that modify or create data on the server.

Headers

Headers 1Content
KeyIs prefilled for you to work for API call with correct type: Content-Type
ValueIs prefilled for you to work for API call with proper vylue: application/json

Body

The best way to explain how to construct a request body is by showing you step-by-step. Here is a tutorial for you!

Example of a request body

Here is the request body for the API call to list the nearest addresses. It represents our Make.com module "List Addresses Around GPS" or our "Localization" endpoint.

{
  "request": {
    "query": {
      "lat": 50.0919999,
      "lon": 14.4527403
    },
    "options": {
      "dataScope": "basic",
      "dataSource": [
        "CZ",
        "SK",
        "PL"
      ],
      "resultsLimit": 10,
      "zipFormat": false,
      "cityFormat": "basic",
      "radius": 50,
      "acceptNearest": false
    }
  }
}