Request a proof of address verification
On this page, you will learn how to initiate a new proof of address verification using the API.
To initiate a new proof of address verification, send the file containing the document using the following endpoint:
POST /verifications/proofs_of_address
curl --location --request POST '{baseUrl}/verifications/proof_of_address' \
--header 'Authorization: Bearer {apiKey}' \
--form 'file=@"/path/to/the/document/proof_of_address.jpeg"'
{
"id": "9a93d3b5-fb3b-4abf-9e70-26315b33506c",
"workspace_id": "090b4f7e-25e8-423d-9387-741f6188ba7a",
"created_at": "2025-03-24T13:32:26+00:00",
"updated_at": "2025-03-24T13:32:26+00:00",
"status": "pending",
"status_codes": [],
"data_anonymized": false,
"data": {
"extracted_from_document": {
"first_name": null,
"last_name": null,
"full_address": null,
"issued_on": null,
"2d_doc": {
"full_name": null,
"address": {
"line1": null,
"postal_code": null,
"city": null,
"country_code": null
}
}
}
}
}
Query param rules
To ensure optimal verification performance and reduce the risk of false positives, please follow the recommendations below when configuring query parameters for your API requests:
- Accept the following document types only:
- Electricity and gas bills or certificates
- Water bills
- Telephone and internet bills
- Housing tax notices (taxe d’habitation)
- Property tax notices (taxe foncière)
- Income tax assessments (avis d’imposition)
ℹ️ Please note that:
- If an unsupported document is submitted, the API will return a
failed
status with the status codePOAV_1509
(please refer to this section) - Accommodation certificates (attestations d’hébergement) are not supported at this time.
- Prefer documents with a 2D-Doc
When requesting a verification, prioritize proof of address documents that contain a 2D-Doc.
The verification will automatically read and extract the information from the 2D-Doc and cross-check it with the provided document content for a higher-confidence result.
ℹ️ Note: The extracted information depends on what’s embedded in the 2D-DOC. Not all fields may be available.
- Fill the optional query parameters
To improve the accuracy of matching and strengthen the verification process, we strongly recommend providing the following optional query parameters:
• first_name
• last_name
• address, postal code and city
Providing this contextual data allows the verification to perform targeted matching against document content.
Query Param | Type | Description |
---|---|---|
file | file | The file containing the proof of address document. Accepted formats: PNG, JPEG, JPG, PDF. Max size: 10 MB. Max resolution: 20 mpx. |
natural_person[first_name] | string | [optional] The first name of the proof of address document holder. This param must always be provided along with the last name of the document holder. The first name provided must match exactly as it appears on the document, as a consistency check will be performed. |
natural_person[last_name] | string | [optional] The last name of the proof of address document holder. This param must always be provided along with the first name of the document holder. The last name provided must match exactly as it appears on the document, as a consistency check will be performed. |
natural_person[address][line1] | string | [optional] Provide the address first line exactly as it appears on the supporting document. This param must always be provided along with the address postal code and city. The address is used for consistency and verification checks. It must include the street number and street name. Avoid abbreviations and ensure the format matches the official document as closely as possible. |
natural_person[address][line2] | string | [optional] Provide the address second line exactly as it appears on the supporting document. The address is used for consistency and verification checks. Avoid abbreviations and ensure the format matches the official document as closely as possible. |
natural_person[address][postal_code] | string | [optional] Provide the address postal code exactly as it appears on the supporting document. This param must always be provided along with the address line 1 and the city. The postal code is used for consistency and verification checks. Avoid abbreviations and ensure the format matches the official document as closely as possible. |
natural_person[address][city] | string | [optional] Provide the address city exactly as it appears on the supporting document. This param must always be provided along with the address line 1 and the postal code. The city is used for consistency and verification checks. Avoid abbreviations and ensure the format matches the official document as closely as possible. |
workspace_id | string | [optional] Scopes the verification to a specific workspace. Defaults to the main workspace if not specified. |
In the response, you'll find the id
. This value is required to retrieve the verification results.
Updated 22 days ago