v5

latestOpenAPI 3.1.02026-07-262421791.5 MB
address

Retrieve an Address by ID

Get address info by ID.

get/v1/addresses/{addressId}

Path parameters

addressIdinteger required

The unique identifier of the address.

Headers

X-External-Correlation-Idstring uuid

Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.

Response

OK - Successfully retrieved the address.

idinteger

Address ID.

profileinteger

User profile ID.

Example response

{
  "id": 10000001,
  "profile": 12345678,
  "details": {
    "country": "US",
    "firstLine": "50 Sunflower Ave",
    "postCode": "10025",
    "city": "Phoenix",
    "state": "AZ",
    "occupations": [
      {
        "code": "Software Engineer",
        "format": "FREE_FORM"
      }
    ]
  }
}