Gets the AVR profile for a physician.
GET {baseUrl}/v1/avr/{fid}| Name | In | Required | Type | Description |
|---|---|---|---|---|
| baseUrl | path | True | string | The API URL. |
| fid | path | True | string | FID of the physician. |
| Name | Type | Description |
|---|---|---|
| 200 OK | AvrProfile | Success |
| 400 Bad Request | FID is invalid. | |
| 401 Unauthorized | Unauthorized. | |
| 404 Not Found | Physician not found. |
Required scopes
- med.avr_read
GET {baseUrl}/v1/avr/999999915Status code: 200
Note: Output is elided. Refer to AVR Profile for a complete example.
{
"fid": "999999915",
"reportDateUtc": "2026-06-16T12:00:00Z",
"identity": {
"birthDate": "1978-08-08",
"npi": null
},
"names": {
"legalName": {
"firstName": "Philip",
"middleName": "James",
"lastName": "Testman"
},
"alternateNames": []
}
}