9mo

Service Documentation

Learn how to interact with OpenAI API using the Ouro SDK or REST API.

API access requires an API key. Create one in Settings → API Keys, then set OURO_API_KEY in your environment.

Getting Started

Use the Ouro SDK to retrieve service metadata and interact with the API programmatically.

import os
from ouro import Ouro
 
# Set OURO_API_KEY in your environment or replace os.environ.get("OURO_API_KEY")
ouro = Ouro(api_key=os.environ.get("OURO_API_KEY"))
 
service_id = "b6b8afe9-a673-48a7-ab54-1e398d14dddd"
 
# Retrieve service metadata
s = ouro.services.retrieve(service_id)
print(s.name, s.visibility)
 
# Optionally read the OpenAPI spec
spec = ouro.services.read_spec(service_id)
print(spec.get("openapi"))

OpenAPI Specification

Download the complete OpenAPI spec for this service.

Download Spec

Available Endpoints

POST
/images/generations/dalle3

Text to image generation with DALL-E 3

POST
/images/generations/dalle2

Text to image generation with DALL-E 2

POST
/images/variations

Create variations of an existing image

POST
/images/analyze

Use vision capabilities to understand images

POST
/speech/generate

Convert text to speech using OpenAI TTS

POST
/speech/from-post

Convert a post to speech using OpenAI TTS