# Get Presenter info

Description

Note: This API route requires the image to be registered via the /register route.

The Person/Info Route is used to retrieve useful information on the people in a specific visual that was previously uploaded to the database.

Additionally, it provides a description of each person within the scene  along with its available changes, which are supported by the Bria API. 

This route should be used instead of the main /info route when you are only interested in  information and available actions for the people in the image.  With this route, you will save time by only obtaining information that is relevant to your needs.

Endpoint: GET /{visual_id}/person/info

## Header parameters:

  - `api_token` (string, required)

## Path parameters:

  - `visual_id` (string, required)
    visual id of the image, received after using the /upload or register route.
    Example: "f49943971e3039c7"

## Response 200 fields (application/json):

  - `actions` (object)
    The available API actions for this specific person.

  - `id` (string)
    The id of the person

  - `labels` (array)
    The known information about the person, such as age range and gender

  - `oracle` (object)
    The predicted quality of the available actions for this specific person

  - `rect` (object)
    The location of the face inside the image. x and y represent the upper left corner of the face, and by using the w (width) and h (height) you can create a rectangle around the face.

  - `type` (string)
    In this route it will allways be 'person'


## Response 205 fields

## Response 400 fields

## Response 404 fields

## Response 405 fields

## Response 429 fields

## Response 500 fields

## Response 506 fields
