Skip to main content
GET
/
assessments
List all available behavioral assessments
curl --request GET \
  --url https://vanguard.profilebehavior.com/api/v4/assessments \
  --header 'Authorization: Bearer <token>'
{
  "code": 200,
  "assessments": [
    {
      "id": "60e9ca73c500a9001534ad84",
      "createdAt": "2025-01-01T09:42:52.329056-05:00",
      "updatedAt": "2025-01-01T09:42:52.329056-05:00",
      "name": "DISC"
    },
    {
      "id": "70f7ca73c500a9001534ed65",
      "createdAt": "2025-01-01T09:42:52.329056-05:00",
      "updatedAt": "2025-01-01T09:42:52.329056-05:00",
      "name": "Focus"
    },
    {
      "id": "80a6ca73c500a9001534fd76",
      "createdAt": "2025-01-01T09:42:52.329056-05:00",
      "updatedAt": "2025-01-01T09:42:52.329056-05:00",
      "name": "Core"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

Success

Standard response object for successful requests that return an array of resources. Used for list endpoints in the Profile Behavior API.

code
integer<int32>
required

HTTP status code of the successful response.

status
enum<string>

Always "success" for successful responses.

Available options:
success
assessments
object[]