---
title: "Get country details (pricing breakdown)"
method: GET
path: "/v1/accounts/{country_code}"
tags: ["Accounts"]
---

# Get country details (pricing breakdown)

`GET /v1/accounts/{country_code}`

Returns detailed pricing breakdown for a specific country, showing how the user's discount is applied.

**Response includes:**
- `price` — final price after user's personal discount
- `discount.base_price` — price before discount
- `discount.percent` — discount percentage applied

**Use case.** Account detail/checkout page where user needs to see both the original price and their discounted price.

**Example.** If base price is $3.00 and user has 10% discount:
- `price.amount`: `"2.70"`
- `discount.base_price`: `"3.00"`
- `discount.percent`: `10`

## Path parameters

- `country_code` string, required — ISO 3166-1 alpha-2 country code (e.g., US, RU, GB).

## Response `200`

Response for status 200

- object
  - `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.
  - `discount` object, required
    - `base_price` string, required — Original price without discount.
    - `percent` number, required — Discount percentage applied to this user.
  - `available` boolean, required — Indicates if account is available for purchase.
  - `tags` string[], required — Account tags (e.g., HIGH_QUALITY for premium accounts).

---

[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)
