# Age and Gender

<mark style="color:green;">`POST`</mark> `{{BASE_URL}}/api/v2/biometrics/merchant/face/age_and_gender`

Get the Age range and Gender of a person in an image

#### Headers

| Name                                        | Type   | Description     |
| ------------------------------------------- | ------ | --------------- |
| x-api-key<mark style="color:red;">\*</mark> | String | your secret key |
| app-id<mark style="color:red;">\*</mark>    | String | your app id     |

#### Request Body

| Name                                    | Type   | Description                     |
| --------------------------------------- | ------ | ------------------------------- |
| image<mark style="color:red;">\*</mark> | String | face image URL(base64,png,jpeg) |

{% tabs %}
{% tab title="200: OK " %}

```javascript
{
    "status": true,
    "response_code": "00",
    "message": "Face Information Retrieved",
    "data": {
        "age": {
            "Low": 49,
            "High": 57
        },
        "gender": {
            "Value": "Male",
            "Confidence": 99.88365173339844
        }
    }
}
```

{% endtab %}
{% endtabs %}
