Skip to main content

SDK Documentation

Auto-generated API reference and documentation

Overview

Welcome to the pycredoai SDK documentation! This SDK provides a Python interface for interacting with the credoai-integration-service.

Features

  • Type Safety: Built with Pydantic models for robust data validation
  • Modern Python: Supports Python 3.8, 3.9, 3.10, 3.11, 3.12
  • Async Support: Built on httpx for high-performance async operations
  • Comprehensive: Full coverage of all API endpoints
  • Well-Documented: Auto-generated documentation from OpenAPI specification

Quick Start

Install the SDK:

pip install pycredoai

Basic usage:

from credoai import Credoai

# Initialize the client
client = Credoai(
base_url="https://api.credo.ai",
api_key="your-api-key"
)

# Example API call
response = client.health.readiness()
print(response)

What's Next?

SDK Information