# Список доступних місячних планів Cloud Phone

Повертає місячні продукти Cloud Phone, доступні команді.
- **Ефект**: відсутній; запит не резервує ємність і не списує баланс. Лише читання.
- **Використання**: передайте отриманий `skuId` до [`/api/cloudphone/create`](./local-api.yaml#operation/createUsingPOST). Ціна в центах США, строк — 30 днів.
- **Порожній результат**: порожній масив `data` означає, що доступних місячних продуктів немає.

Типові помилки див. у [Error Codes](../Getting%20Started/error-codes.md).
- **Версія клієнта**: потрібен MoreLogin Desktop v2.65.0 або новіший; старі версії не надають цей маршрут Local API.

Endpoint: GET /api/cloudphone/monthly/skus
Version: 2026-09-05

## Response 200:

  - `200` (unknown)
    Request processed; `data` is an empty array when no monthly product is available

## Response 200 fields (application/json):

  - `code` (integer, required)
    Business result code; `0` indicates success
    Example: 0

  - `msg` (string | null, required)
    Error message; null when successful
    Example: null

  - `requestId` (string, required)
    Request ID for troubleshooting
    Example: 1d4f3ea968664593860b94b35d4ebf5e

  - `data` (array)

  - `data.skuId` (string, required)
    Monthly Cloud Phone product ID

  - `data.skuName` (string, required)
    Product name returned in the product-service language

  - `data.cloudPhoneAndroidVersion` (string | null)
    Android version, or null when the product has no configured value

  - `data.cloudPhoneStorage` (integer | null)
    Storage capacity in GB, or null when the product has no configured value

  - `data.prices` (array, required)
    Active monthly price configurations

  - `data.prices.price` (integer, required)
    Configured price in US cents

  - `data.prices.period` (integer, required)
    Billing-period count returned by the product service

  - `data.prices.periodUnit` (string, required)
    Localized billing-period unit returned by the product service

  - `data.prices.priceDesc` (string | null)
    Localized display price, when configured

