> For the complete documentation index, see [llms.txt](https://offerslook-api.gitbook.io/api-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://offerslook-api.gitbook.io/api-documentation/affiliate_api/dictionary/get_national_list_information.md).

# Get national list information

| HTTP method | Endpoint                   |
| ----------- | -------------------------- |
| **GET**     | **aff/v1/dict\_countries** |

**Note: When you request the API,will returns the national information in the dictionary .**

## Response body parameters <a href="#response-body-parameters" id="response-body-parameters"></a>

| Field   | Type           | Description                          |
| ------- | -------------- | ------------------------------------ |
| country | string         | name of the country.                 |
| code    | string         | International short of this country. |
| citys   | array\[string] | The country's urban areas.           |

## Example request <a href="#example-request" id="example-request"></a>

**Request GET** <http://{networkname}.api.offerslook.com/aff/v1/dict_countries>

## Example response <a href="#example-response" id="example-response"></a>

```
{
    "code": 0,
    "message": "Success",
    "data": {
        "dict_country": [
            {
                "country": "Europe (Unknown Country)",
                "code": "EU",
                "citys": "AOL"
            }
            ]
            }
     }
```
