Skip to content

Retrieve a profile by ID

Request

Get profile info by ID.

Security
UserToken or PersonalToken
Path
profileIdinteger, (int64)required

Profile ID.

Headers
X-External-Correlation-Idstring, (uuid), <= 36 characters

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

Example:f47ac10b-58cc-4372-a567-0e02b2c3d479
curl -i -X GET \
  'https://api.wise.com/2026Q3/profiles/{profileId}' \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479'

Responses

Profile object.

Headers
X-External-Correlation-Idstring, (uuid), <= 36 characters

Echoed back when X-External-Correlation-Id was included in the request. Learn more.

Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
x-trace-idstring

Unique trace identifier assigned by Wise. Useful when contacting support about a specific request.

Example:"fba501b6d453b96789f52338f019341f"
Bodyapplication/json
typestringrequired

Type of profile.

Value:"PERSONAL"
Example:"PERSONAL"
Discriminator
idinteger, (int64)

Unique identifier for the profile.

Example:14575282
publicIdstring

Publicly accessible identifier for the profile.

Example:"a1b2c3d4-e5f6-7890-1234-567890abcdef"
userIdinteger, (int64)

The ID of the user associated with this profile.

Example:9889627
addressobject

Main registered address of the profile.

emailstring

Primary email address for the profile.

Example:"sarah.jenkins@example.com"
createdAtstring, (date-time)

Timestamp when the profile was created (ISO 8601 format).

Example:"2023-01-15T10:30:00"
updatedAtstring, (date-time)

Timestamp when the profile was last updated (ISO 8601 format).

Example:"2025-06-18T14:20:00"
avatarstring or null

Link to person avatar image.

Example:null
currentStatestring

Current status of this profile.

Enum:"HIDDEN""VISIBLE""DEACTIVATED"
Example:"VISIBLE"
contactDetailsobject

Contact information for the profile.

firstNamestring

First name of the profile holder.

Example:"Sarah"
lastNamestring

Last name of the profile holder.

Example:"Jenkins"
preferredNamestring

Preferred name of the profile holder.

Example:"Sal"
dateOfBirthstring

Date of birth of the profile holder.

Example:"1985-05-20"
phoneNumberstring

Phone number of the profile holder.

Example:"+447700900456"
secondaryAddressesArray of objects

An array of secondary addresses associated with the profile.

fullNamestring

Full name of the profile holder.

Example:"Sarah Jenkins"
Response
{ "type": "PERSONAL", "id": 14575282, "publicId": "a1b2c3d4-e5f6-7890-1234-567890abcdef", "userId": 9889627, "address": { "id": 36086782, "addressFirstLine": "24 Willow Creek Lane", "city": "Bristol", "countryIso2Code": "GB", "countryIso3Code": "gbr", "postCode": "BS1 6AE", "stateCode": null }, "email": "sarah.jenkins@example.com", "createdAt": "2023-01-15T10:30:00", "updatedAt": "2025-06-18T14:20:00", "avatar": null, "currentState": "VISIBLE", "contactDetails": { "email": "sarah.contact@example.com", "phoneNumber": "+447700900123" }, "firstName": "Sarah", "lastName": "Jenkins", "preferredName": "Sal", "dateOfBirth": "1985-05-20", "phoneNumber": "+447700900456", "secondaryAddresses": [ { "id": 36086782, "addressFirstLine": "24 Willow Creek Lane", "city": "Bristol", "countryIso2Code": "GB", "countryIso3Code": "gbr", "postCode": "BS1 6AE", "stateCode": null } ], "fullName": "Sarah Jenkins" }