---
title: "Get countries list (personal pricing)"
method: GET
path: "/v1/accounts/"
tags: ["Accounts"]
---

# Get countries list (personal pricing)

`GET /v1/accounts/`

Returns paginated list of available accounts with **user-specific pricing** (personal discount applied).

**Pricing.** Prices reflect the authenticated user's discount level. To see base prices without discount, use `GET /accounts/countries`.

**Difference from `/accounts/countries`:**
- Requires authentication
- Prices include user's personal discount

**Filtering.** Use `country_codes` to request specific countries (e.g., `US,RU,GB`).

**Sorting options:** `price_asc`, `price_desc`, `name_asc`, `name_desc`, `popularity_asc`, `popularity_desc`.

## Query parameters

- `country_codes` string — Filter by country codes. Comma-separated list of ISO 3166-1 alpha-2 codes (e.g., 'US,RU,GB').
- `sort` 'price_asc' | 'price_desc' | 'name_asc' | 'name_desc' | 'popularity_asc' | 'popularity_desc', required — Sort order for accounts.
- `page` integer, required — Page number.
- `page_size` integer, required — Number of items per page.

## Response `200`

Successful response.

- object — Successful response.
  - `items` object[], required
    - `country_code` string, required — ISO 3166-1 alpha-2 country code (e.g., US, RU, GB).
    - `emoji` string, required — Country flag emoji.
    - `display_name` object, required
      - `ru` string, required — Name in Russian.
      - `en` string, required — Name in English.
    - `price` object, required
      - `amount` string, required — Monetary amount as a string with up to 2 decimal places.
      - `currency_code` string, required — ISO 4217 currency code.
    - `available` boolean, required — Indicates if account is available for purchase.
    - `tags` string[], required — Account tags (e.g., HIGH_QUALITY for premium accounts).
    - `available_count` number, nullable — Number of available accounts for this country.
  - `pagination` object, required
    - `current_page` integer, required — Current page number.
    - `page_size` integer, required — Number of items per page.
    - `total_items` integer, required — Total number of items.
    - `total_pages` integer, required — Total number of pages.
    - `has_next` boolean, required — Whether there is a next page.
    - `has_previous` boolean, required — Whether there is a previous page.

---

[API](https://skmtc.net/getmytg/apis/get-my-tg-api.md) · [All operations](https://skmtc.net/getmytg/apis/get-my-tg-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/getmytg/get-my-tg-api/versions/30f975c0d1e6/schema)
