v5
latestOpenAPI 3.1.02026-07-262421791.5 MBValidate an address
Validates the format of an address for a card order. Make sure to follow country-specific address fields and validation as described in the card address validation guide.
For card creation, the address requirement depends on the card type:
-
Physical Cards (Required): Used as the delivery address to ship the card and for AVS checks in countries where required.
-
Virtual Cards (Optional): If provided, this acts as the billing address. If omitted, the profile address is used as the fallback. In either scenario, the address is used for AVS checks in countries where required.
{% admonition type="warning" %} We do not support PO BOX addresses. {% /admonition %}
Headers
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Request body
Example request
{
"firstLine": "56 Shoreditch High St",
"secondLine": "The Tea Bldg",
"city": "London",
"postCode": "E1 6JJ",
"country": "GB"
}Response
OK - Validation result returned. An empty errors collection means the address is valid.
Example response
{
"errors": [
{
"field": "postCode",
"message": "Please enter a valid postcode"
}
]
}