POST
/
v1
/
address
/
verify
/
bulk
curl --request POST \
  --url https://api.findloka.com/v1/address/verify/bulk \
  --header 'Authorization: <authorization>' \
  --header 'Content-Type: application/json' \
  --data '{
  "addresses": [
    "<string>"
  ]
}'
{
  "verified_addresses": [
    {
      "address": "123 Main St, San Francisco, CA 94105",
      "verified": true
    },
    {
      "address": "456 Market St, San Francisco, CA 94105",
      "verified": false
    }
  ]
}

Overview

The Verify Bulk Addresses API allows you to check if multiple addresses exist in the database with a single request. This endpoint is useful for validating a batch of addresses efficiently.

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

Authorization

Authorization
string
required

Your API key for authentication

Body

addresses
string[]
required

Array of full addresses to verify

{
  "verified_addresses": [
    {
      "address": "123 Main St, San Francisco, CA 94105",
      "verified": true
    },
    {
      "address": "456 Market St, San Francisco, CA 94105",
      "verified": false
    }
  ]
}

Notes

  • Each address in the response includes the original address string and a boolean verified flag
  • verified: true indicates that the address exists in the database
  • verified: false indicates that the address could not be found
  • Make sure to URL-encode each address parameter when making requests
  • For very large batches of addresses, consider making multiple smaller requests to avoid timeout issues