| Time | Status | User Agent |  |
| :-- | :-- | :-- | :-- |
| Make a request to see history. |

#### URL Expired

The URL for this request expired after 30 days.

**Example**

Check income:

```undefined
{
  "country": "br",
  "taxId": "32757350803" // cpf 76433943853. 32757350803
}
```

taxId

string

required

11 digit CPF

country

string

required

Two letter Alpha-2 country code. (Must be BR).

api-version

string

required

Defaults to 1.0

# ``200      Example:    ```undefined {     "income": [         {             "key": "employment_type",             "status": "success",             "sub_label": "Type",             "message": "ENTREPRENEUR | BUSINESS OWNER"         },         {             "key": "employment_sector",             "status": "success",             "sub_label": "Sector",             "message": "PRIVATE - 4639701 - COMERCIO ATACADISTA DE PRODUTOS ALIMENTICIOS EM GERAL"         },         {             "key": "income_range",             "status": "success",             "sub_label": "Estimated Income Range",             "message": "9240-13200"         }     ] } ```

# ``400      Example:    ```undefined {     "timestamp": 1722948860110,     "status": 400,     "error": "Both country and taxId are mandatory fields must be submitted for successful request",     "message": "Both country and taxId are mandatory fields must be submitted for successful request",     "path": "/omni/externalVerification/income" } ```

### Example Request Using curl

```bash
curl --request POST \
     --url https://demo-api.incodesmile.com/omni/externalVerification/income \
     --header 'accept: application/json' \
     --header 'api-version: 1.0' \
     --header 'content-type: application/json'
```

Click `Try It!` to start a request and see the response here! Or choose an example:

application/json

``200``400
