Get the full address details for a prediction.
Exchanges a prediction ID (where action was resolve) for a full, formatted address object that can be used to populate the address form fields.
This is the second step of the autocomplete flow — called after the user selects a final address prediction from the autocomplete results.
Security
BearerAuth
- Mock serverhttps://docs.ingrid.com/_mock/developer-resources/ingrid-api/openapi/v1/address/details/{id}
- Productionhttps://api.ingrid.com/v1/address/details/{id}
curl -i -X GET \
'https://docs.ingrid.com/_mock/developer-resources/ingrid-api/openapi/v1/address/details/{id}?siteId=00000000-0000-0000-0000-000000000000' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
Returns the full address for a resolved French prediction ID
{ "address": { "countryCode": "FR", "postalCode": "75001", "addressLines": [ … ], "locality": "Paris" } }