profile.get
Read the personal details used to fill in application forms
- Request
- GET
/api/v1/profile - Scope required
profile:read- Effect
- Reads only. Safe to retry and safe for an agent to call unprompted.
- Acts on
- Acts on the account’s own job search.
- MCP tool
profile_get- Environment
- Live and sandbox alike.
- Request body
- JSON.
What it does
Returns the name, contact details, address and work-eligibility answers this account has saved for filling in employers' application forms. Most of it is encrypted at rest and decrypted for this response, so treat it as sensitive: it is the one part of the API that answers with a home address and a phone number. An account that has filled nothing in answers with every field empty rather than 404. Change it with `profile.update`; `me.get` describes the credential instead.
Response
- authorizedForWorkInUnitedStates
- one of: yes, no, required
- city
- string, required
- country
- string, required
- county
- string, required
- currentCompany
- string, required
- currentTitle
- string, required
- string, required
- firstName
- string, required
- hasBachelorDegree
- one of: yes, no, required
- lastName
- string, required
- string, required
- middleName
- string, required
- phone
- string, required
- phoneCountryCode
- string, required
- postalCode
- string, required
- requiresVisaSponsorship
- one of: yes, no, required
- state
- string, required
- streetAddress1
- string, required
- streetAddress2
- string, required
- streetAddress3
- string, required
- title
- string, required
Examples
A filled-in profile
curl -s https://www.jobapplicationtracking.com/api/v1/profile \
-H "Authorization: Bearer $JAT_KEY"{
"firstName": "Riley",
"middleName": "",
"lastName": "Bennett",
"title": "",
"email": "riley@example.com",
"phone": "5551234567",
"phoneCountryCode": "1",
"streetAddress1": "18 Prairie Street",
"streetAddress2": "",
"streetAddress3": "",
"city": "Chicago",
"county": "Cook",
"state": "Illinois",
"country": "United States",
"postalCode": "60601",
"authorizedForWorkInUnitedStates": "yes",
"requiresVisaSponsorship": "no",
"hasBachelorDegree": "yes",
"currentTitle": "Senior Engineer",
"currentCompany": "Northwind",
"linkedIn": "https://www.linkedin.com/in/riley-bennett"
}