Official SDKs for all major programming languages. Type-safe, well-documented, and designed to get you up and running in minutes.
Get API KeyAll SDKs are open source, actively maintained, and provide full API coverage with async support where available.
Async support with aiohttp, type hints, and Pydantic models. Works great with Django, Flask, and FastAPI.
Full TypeScript support, Promise-based API, and ESM/CommonJS compatibility. Perfect for Express, Next.js, and Nest.
PSR-18 compatible, works with Laravel, Symfony, and WordPress. Supports both sync and async with ReactPHP.
Idiomatic Ruby API with built-in Rails integration. Background job support with Sidekiq and ActiveJob.
Strongly typed, context-aware, and zero dependencies. Perfect for high-performance microservices.
Fluent builder pattern, CompletableFuture support, and Spring Boot auto-configuration.
Async/await, nullable reference types, and DI-friendly. Works with ASP.NET Core and Azure Functions.
Fully async with Tokio, zero-copy deserialization with serde, and comprehensive error types.
# Python Quick Start from imagemoderation import Client # Initialize with your API key client = Client(api_key="your_api_key") # Moderate an image result = client.moderate( image_url="https://example.com/image.jpg", models=["nsfw", "violence", "text"] ) # Check results if result.nsfw.score > 0.8: print("NSFW content detected!") else: print("Image is safe") # Access detailed categories print(f"NSFW: {result.nsfw.score:.2f}") print(f"Violence: {result.violence.score:.2f}") print(f"Detected text: {result.text.content}")
Get your free API key and integrate in minutes.
Get API Key