iOS SDK

The Infoplaza Platform iOS SDK lets you integrate weather, geospatial, and mobility data into your iOS apps with native Swift support.

Installation

Add the package to your project via Swift Package Manager:

dependencies: [
    .package(url: "https://github.com/infoplaza/ios-sdk", from: "1.0.0")
]

Or add via Xcode: File → Add Package Dependencies and enter the repository URL.

Quick Start

Configure your API key and fetch weather data:

let client = InfoplazaClient(apiKey: "your-api-key")
let forecast = try await client.weather.getForecast(lat: 52.37, lon: 4.89)

See the API Reference for available endpoints and the Get Started guide for authentication.