Skip to content

Service Catalog

Socaity ships a typed Python client for every service in the catalog. The calling pattern is identical across them, and you import each service by its vendor path: socaity.sdk.replicate.<vendor>. The Socaity backend runs the model on EU GPUs and proxies the call, so one API key covers everything.

This page lists a few of the most-used services. The full live catalog with playgrounds, pricing, and runtime status lives at socaity.ai/APIs/overview.

The import pattern

pip install socaity installs the SDK; running socaity install <vendor>/<model> pins a service and generates its typed client for import. Every service imports from socaity.sdk.replicate.<vendor> and routes through the Socaity backend, so you only manage one API key: no Replicate account needed.

python
import os
from socaity.sdk.replicate.black_forest_labs import flux_schnell

# Every service authenticates with SOCAITY_API_KEY (or your socaity login session).
flux = flux_schnell(api_key=os.getenv("SOCAITY_API_KEY"))

image = flux(prompt="a cat on mars").get_result()
image.save("output.png")

A hand-picked selection across image, text, speech, and video. Click any card to open the live service page on socaity.ai.

Browse the full catalog

The featured list above covers common entry points. The complete catalog (the full Replicate-backed index, with playgrounds, current pricing, and runtime status) is on the main platform.