Skip to content
Ilya Krukowski edited this page Apr 11, 2022 · 1 revision

Towns endpoint, support pagination.

Fetch towns

Providing pagination data is optional:

towns = client.towns itemsPerPage: 2, page: 3
towns[0].name # => 'Анапа'

Fetch a single town

Provide town ID:

town = client.town 1
town.name # => 'Абакан'
Clone this wiki locally