Authentication
The Parcl Labs API uses API keys to authenticate requests. You can view and manage your API keys in the Parcl Labs Dashboard.
Warning: Treat your access token like a password
To help keep your account secure, consider using a service such as the 1Password CLI to store your token securely.
Once you have obtained your API Key, to use it in action, simply pass in the Authorization
header, replacing api_key
with your own:
curl --request GET \
--url https://api.realestate.parcllabs.com/v1/place/2900187/demographics \
--header 'Authorization: api_key' \
--header 'accept: application/json'
Updated 7 months ago