---
title: "Check Country Eligibility"
method: POST
path: "/checkcountryiseligible"
tags: ["LookupApi"]
---

# Check Country Eligibility

`POST /checkcountryiseligible`

Checks whether a given country is eligible by its country short code.

## Request body

- CountryCodeRequestDto
  - `countryCode` string, nullable — Country code in ISO 3166-1 alpha-2 format (e.g., 'US' for the United States, 'DE' for Germany).

## Response `200`

OK

- ClientAPICheckCountryEligibilityResultDto
  - `status` 'OK' | 'Error' | 'ValidationFailed' — 0 = OK, 1 = Error, 2 = ValidationFailed
  - `validations` ClientAPIValidation[], nullable
    - `code` integer
    - `message` string, nullable
    - `params` object, nullable
  - `error` ClientAPIError
    - `code` integer
    - `message` string, nullable
    - `stackTrace` string, nullable
    - `innerException` ClientAPIError — recursive
    - `validations` ClientAPIValidation[], nullable
      - `code` integer
      - `message` string, nullable
      - `params` object, nullable
    - `messageParams` string[], nullable
    - `payload` JToken[]
  - `traceID` string, nullable
  - `data` CheckCountryEligibilityData
    - `isEligible` boolean

---

[API](https://skmtc.dev/expressone/apis/client-api.md) · [All operations](https://skmtc.dev/expressone/apis/client-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/expressone/client-api/revisions/2acf7e4a5080/schema)
