- Website: https://zipcodestack.com
- Docs: https://zipcodestack.com/docs/
pod 'Zipcodestack', :git => 'https://github.com/martechdev/zipcodestack-ios.git', :tag => '0.1.0'import Zipcodestack
let client = ZipcodestackClient(configuration: .init(apiKey: "YOUR_API_KEY"))
let result = try await client.lookup(params: ["code": "94105"]) // async/awaitlet zips = try await client.lookup(params: [
"city": "San Francisco",
"state": "CA"
])let nearby = try await client.lookup(params: [
"code": "94105",
"radius": "10mi"
])MIT