Skip to content
This repository was archived by the owner on Mar 11, 2026. It is now read-only.

Repository files navigation

plexswift

PlatformSwift Version

An Open API Spec for interacting with Plex.tv and Plex Servers

Requirements

The SDK supports iOS 13 and later.

Summary

Plex-API: An Open API Spec for interacting with Plex.tv and Plex Media Server

Plex Media Server OpenAPI Specification

An Open Source OpenAPI Specification for Plex Media Server

Automation and SDKs provided by Speakeasy

Documentation

API Documentation

SDKs

The following SDKs are generated from the OpenAPI Specification. They are automatically generated and may not be fully tested. If you find any issues, please open an issue on the main specification Repository.

LanguageRepositoryReleasesOther
PythonGitHubPyPI-
JavaScript/TypeScriptGitHubNPM \ JSR-
GoGitHubReleasesGoDoc
RubyGitHubReleases-
SwiftGitHubReleases-
PHPGitHubReleases-
JavaGitHubReleases-
C#GitHubReleases-

Table of Contents

SDK Installation

The SDK uses the Swift Package Manager to handle dependencies, which is included in Swift 3.0 and above.

You can add plexswift to your project directly in Xcode (File > Add Packages...) or by adding it to your project's Package.swift file:

dependencies: [
.package(url: "https://github.com/LukeHagar/plexswift.git", .upToNextMajor(from: "0.10.5"))
]

SDK Example Usage

Example

import Foundation
import Plexswift
letclient=Client(security:.accessToken("<YOUR_API_KEY_HERE>"))letresponse=tryawait client.server.getServerCapabilities()switch response.data {case.object(let object):
// Handle response
breakcase.badRequest(let badRequest):
// Handle response
breakcase.unauthorized(let unauthorized):
// Handle response
breakcase.empty:
// Handle empty response
break}

Available Resources and Operations

Available methods
  • getUsers - Get list of all connected users

Authentication

Global Security Schemes

The SDK supports the following security scheme globally through the Shared.Security type:

NameTypeScheme
.accessTokenapiKeyAPI key

You can set the appropriate security parameters by passing a Shared.Security value for the security parameter when initializing the Client instance. For example:

import Foundation
import Plexswift
letclient=Client(security:.accessToken("<YOUR_API_KEY_HERE>"))letresponse=tryawait client.server.getServerCapabilities()switch response.data {case.object(let object):
// Handle response
breakcase.badRequest(let badRequest):
// Handle response
breakcase.unauthorized(let unauthorized):
// Handle response
breakcase.empty:
// Handle empty response
break}

Development

Maturity

This SDK is in beta, and there may be breaking changes between versions without a major version update. Therefore, we recommend pinning usage to a specific package version. This way, you can install the same version each time without breaking changes unless you are intentionally looking for the latest version.

Contributions

While we value open-source contributions to this SDK, this library is generated programmatically. Feel free to open a PR or a Github issue as a proof of concept and we'll do our best to include it in a future release!

SDK Created by Speakeasy

About

An open source Plex Media Server Swift SDK

Resources

Contributing

Stars

15 stars

Watchers

2 watching

Forks

Releases

Packages

Used by

Contributors

Languages