Home API Documentation Open Console
Build with Sloxly APIs

Your apps, powered by
Sloxly

Create projects, generate OAuth and Captcha credentials, and integrate identity and security systems into your applications.

Open Console Explore APIs

Everything You Need

Powerful APIs designed for clean, fast integration in any stack.

OAuth 2.0

Let users sign in with their Sloxly account. Generate credentials, set redirect URLs, and go live.

Smart Captcha

Protect your forms with intelligent captcha. Supports auto-verify, invisible, and managed modes.

Simple Integration

Just a few lines of code. Our APIs are clean, well-documented, and easy to implement.

Project Dashboard

Manage all your apps, view analytics, rotate API keys, and monitor usage from a single dashboard.

API Keys & Tokens

Generate client_id, client_secret, and site keys — manage, rotate, and revoke anytime.

Real-time Logs

Track every auth request, captcha verification, and token exchange with detailed request logs.

Quick Start

Add "Continue with Sloxly" to your app in under 5 minutes

// 1. Redirect user to Sloxly OAuth
$authUrl = "https://api.sloxly.com/v1/Oauth/authorization";
$params = http_build_query([
  'client_id' => $your_client_id,
  'redirect_uri' => $your_callback_url
]);
header("Location: $authUrl?$params");

// 2. Exchange auth code for access token
$token = curl_post("https://api.sloxly.com/v1/Oauth/token", [
  'client_id' => $id, 'client_secret' => $secret, 'code' => $code
]);