---
title: "Get list of cities"
method: GET
path: "/cities"
tags: ["Content API"]
---

# Get list of cities

`GET /cities`

## Query parameters

- `country_id` integer — Country ID to filter cities by.
- `lang` string
- `page_size` integer
- `page` integer

## Headers

- `Authorization` string, required

## Response `200`

Successful operation.

- object
  - `success` boolean
  - `pagination` Pagination
    - `total` integer — Total number of items.
    - `page` integer — Number of the current page.
    - `page_size` integer — Size of the current page.
  - `cities` City[]
    - `id` string — The ID of the city.
    - `name` string — The name of the city.
    - `country_id` string — The ID of the country the city is in.
    - `country_name` string — The name of the country the city is in.

## Other responses

- `400` — Bad Request -- Check your request parameters (typo in parameter or invalid value).
- `401` — Unauthorized -- Your API key is incorrect.
- `403` — Forbidden -- The endpoint or parameters are not allowed for the matching API key.
- `404` — Not Found -- Requested resource/endpoint could not be found.
- `405` — Method Not Allowed -- Check your request method.
- `429` — Too Many Requests -- We currently apply a fair-use policy, but we might enforce limits in the future.
- `500` — Internal Server Error -- We had a problem with our server. Try again later.
- `503` — Service Unavailable -- We're temporarily offline for maintenance. Please try again later.

---

[API](https://skmtc.net/tiqets/apis/tiqets-distributor-api.md) · [All operations](https://skmtc.net/tiqets/apis/tiqets-distributor-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/tiqets/tiqets-distributor-api/versions/eaf9cf96606a/schema)
