---
title: "(B) List Rapyd Verify Application Types"
source_url: https://docs.rapyd.net/en/-b--list-rapyd-verify-application-types.html
lang: en
---

# (B) List Rapyd Verify Application Types

List the application types that are supported for a specific country.

### Parameters

### Request Header Parameters

- - access_key
  - Unique access key provided by Rapyd for each authorized user.

    See [Developers](https://docs.rapyd.net/en/developers.md "Developers").
- - Content-Type
  - Indicates that the data appears in JSON format. Set to **application/json**.
- - idempotency
  - A unique key that prevents the platform from creating the same object twice.

    See [Idempotency](https://docs.rapyd.net/en/idempotency.md "Idempotency").
- - salt
  - Random string. Recommended length: 8-16 characters.
- - signature
  - Signature calculated for each request individually.

    See [Request Signatures](https://docs.rapyd.net/en/request-signatures.md "Request Signatures").
- - timestamp
  - Timestamp for the request, in [Unix time](https://docs.rapyd.net/en/glossary.md#UUID-945d98cf-adae-e1cf-2606-c7fae8b4a7e1_unix_time "Unix time") (seconds).
- - api_timestamp
  - Timestamp for the request, in [Unix time](https://docs.rapyd.net/en/glossary.md#UUID-945d98cf-adae-e1cf-2606-c7fae8b4a7e1_unix_time "Unix time") (seconds).

### Request Path Parameters

- - country
  - Two-letter ISO 3166-1 ALPHA-2 code for the country.

### Response

> **Note:**
>
> The response sample has been shortened since it contains many lines.

From the response, the application type for each entity type is displayed. For example, if the application is for a private limited company in France, then the **application_type** is the string **typ_WyJGUiIsMixudWxsLCJQcml2YXRlIExpbWl0ZWQgQ29tcGFueSJd**.

- - application_type
  - Code for the type of application. String starting with **typ_**.
- - country
  - The country where the company is domiciled. Two-letter ISO 3166-1 ALPHA-2 code. The hosted application displays the country as the default setting.
- - entity_type
  - Type of business entity.

    - **Partnership**
    - **Sole Proprietor**
    - **Private Limited Company**
    - **Charity or NPO**
    - **Individual**

### Error Responses

- MISSING_FIELDS - [APP_LEVEL] - The request attempted an operation, but one or more required fields were missing. The request was rejected. Corrective action: Provide all of the fields that are listed at the end of the error code. For more information, see the API Reference.

- /v1/verify/api/applications/types/country/:country

- List Rapyd Verify Application Types
- ```curl
  curl -X get
  'https://sandboxapi.rapyd.net/v1/verify/api/applications/types/country/FR' \
  -H 'access_key: your-access-key-here' \
  -H 'Content-Type: application/json' \
  -H 'salt: your-random-string-here' \
  -H 'signature: your-calculated-signature-here' \
  -H 'timestamp: your-unix-timestamp-here' \
  -H 'api_timestamp: your-unix-timestamp-here' \
  ```
- ```json
  {
      "status": {
          "error_code": "",
          "status": "SUCCESS",
          "message": "",
          "response_code": "",
          "operation_id": "55d6995a-f71c-4041-9833-fbbf057b6002"
      },
      "data": [
          {
              "application_type": "typ_WyJGUiIsMiwwLCJQcml2YXRlIExpbWl0ZWQgQ29tcGFueSJd",
              "entity_type": "Private Limited Company",
              "country": "FR"
          },
          {
              "application_type": "typ_WyJGUiIsMiwwLCJQYXJ0bmVyc2hpcCJd",
              "entity_type": "Partnership",
              "country": "FR"
          },
          {
              "application_type": "typ_WyJGUiIsMiwwLCJTb2xlIFByb3ByaWV0b3IiXQ==",
              "entity_type": "Sole Proprietor",
              "country": "FR"
          },
          {
              "application_type": "typ_WyJGUiIsMiwwLCJDaGFyaXR5IG9yIE5QTyJd",
              "entity_type": "Charity or NPO",
              "country": "FR"
          },
          {
              "application_type": "typ_WyJGUiIsMiwwLCJQdWJsaWMgTGlzdGVkIENvbXBhbnkiXQ==",
              "entity_type": "Public Listed Company",
              "country": "FR"
          },
          {
              "application_type": "typ_WyJGUiIsMiwwLCJHb3Zlcm5tZW50IEVudGl0eSJd",
              "entity_type": "Government Entity",
              "country": "FR"
          }
      ]
  }
  ```
