Service Catalog
Socaity ships typed Python clients for every service in the catalog. The import looks the same for every service — what changes is whether you need to install it first.
This page lists the most-used services grouped by category. The full live catalog with playgrounds, pricing, and runtime status lives at socaity.ai/APIs/overview.
Official services (face2face, speechcraft, audio2face) are auto-installed when you run socaity. Just import them. Unofficial services (community services and Replicate-backed ones like flux_schnell) need a one-time install via socaity --install <name>, then they import the same way.
# Official service — auto-installed, just import
from socaity import speechcraft
# Unofficial service — install once, then import the same way
# socaity --install flux_schnell (Coming Soon)
from socaity import flux_schnell
# Identical calling pattern for both
flux = flux_schnell()
images = flux(prompt="a cat on mars").get_result()
images[0].save("output.png")SOCAITY_API_KEY. The SDK handles authentication for you — official or unofficial, the calling pattern is identical. The socaity --install command is Coming Soon; see the SocaitySDK CLI reference for the current install workflow. A hand-picked selection across vision, speech, image and text. Official services first, then community / Replicate-backed ones. Click any card to open the live service page on socaity.ai.
The featured list above covers the most common entry points. The complete catalog — every official service plus the full community / Replicate index, with playgrounds, current pricing, and runtime status — is on the main platform.