RunAPI core SDK for JavaScript, Python, Ruby, Go, Java, and PHP
Project description
RunAPI Core Python SDK
The RunAPI Core Python SDK provides shared authentication, HTTP, retry, error, and polling primitives for RunAPI model packages. Install runapi-core only when you are building SDK infrastructure or shared Python tooling; application code should normally install a concrete model package such as runapi-flux-2.
Install
pip install runapi-core
Notes
Use the core package for common client options, error classes, request helpers, file uploads, and task polling behavior that Provider Clients share. Configure it globally or per client:
import runapi.core as runapi
runapi.configure(api_key="sk-...") # or set RUNAPI_API_KEY in the environment
Request identifiers
RunAPI accepts an optional X-Client-Request-Id header on public API calls. Use printable ASCII values up to 512 characters. Accepted values are echoed in the response and stored with the RunAPI task for support and reconciliation.
High-level Python Provider Client resource methods accept per-request options and keep response headers on the returned model object. This example uses the Suno Provider Client; install runapi-suno to run it.
import os
from runapi.core import RequestOptions
from runapi.suno import SunoClient
client = SunoClient(api_key=os.environ["RUNAPI_API_KEY"])
options = RequestOptions(
headers={"X-Client-Request-Id": "order-123"},
)
response = client.text_to_music.create(
prompt="A chill lo-fi beat",
model="suno-v4.5-plus",
vocal_mode="instrumental",
options=options,
)
runapi_task_id = response.runapi_task_id
# Equivalent case-insensitive lookup:
runapi_task_id = response.response_headers["X-RunAPI-Task-Id"]
from runapi.core import FilesClient
files = FilesClient() # reads RUNAPI_API_KEY, or pass api_key="sk-..."
uploaded = files.create(file="./input.png")
remote = files.create(source="https://cdn.runapi.ai/public/samples/input.png")
inline = files.create(source="iVBORw0KGgo...")
print(uploaded.url)
Public SDK docs live at https://runapi.ai/docs#runapi-sdks and the model catalog lives at https://runapi.ai/models.
License
Licensed under the Apache License, Version 2.0.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file runapi_core-0.2.4.tar.gz.
File metadata
- Download URL: runapi_core-0.2.4.tar.gz
- Upload date:
- Size: 27.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cbd27dd51c64c1b0668bbb0a2c8c92a714b59915c066a47126e92ef44ba77ec
|
|
| MD5 |
cd9c9fa50451e7e492cc3450d778d910
|
|
| BLAKE2b-256 |
8167b3d82acf618a6c5f557acf6a0816f6e901936cda41ca6a6d7a905c37884c
|
File details
Details for the file runapi_core-0.2.4-py3-none-any.whl.
File metadata
- Download URL: runapi_core-0.2.4-py3-none-any.whl
- Upload date:
- Size: 25.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9940575205ed8de94cb106acf2194ade976a825db5c07ee199931d2abfc373a6
|
|
| MD5 |
3533a25899bed3f6d7877e2e8aba773e
|
|
| BLAKE2b-256 |
8f58b2084575d5280d5e1159663e441aee28cff3e7ea3fe5f10048d2f0e557e7
|