GET
/
v1
/
address
/
verify
/
single
curl --request GET \
  --url https://api.findloka.com/v1/address/verify/single \
  --header 'Authorization: <authorization>'
{
  "verified": true
}

Overview

The Verify Single Address API allows you to check if a specific address exists in the database. This endpoint is useful for validating addresses before performing other operations.

To obtain an API key, please contact our sales team.

Authorization

Authorization
string
required

Your API key for authentication

Query Parameters

address
string
required

The full address to verify

{
  "verified": true
}

Notes

  • A verified: true response indicates that the address exists in the database
  • A verified: false response indicates that the address could not be found
  • The address should be in the format of 123 Main St, San Francisco, CA 94105
  • Make sure to URL-encode the address parameter when making requests
  • For example: ?address=123%20Main%20St%2C%20San%20Francisco%2C%20CA%2094105