Skip to main content

API Playground

Test SDK functions directly in your browser. Configure your credentials and click Run to execute real API calls.

ConfigurationNot Configured
Note: Credentials are stored in your browser's localStorage and are sent directly to your API endpoint. They are never sent to our servers.

Get Current User

Retrieve the authenticated user profile

GET /apps/users/me
SDK Code
import { initSDK, getUser } from "@cpod/sdk";

initSDK({ baseUrl: "https://dev-api.cyberpod.cloud/v1", apiKey: "your-api-key" });

const user = await getUser();
console.log(user);
No parameters required
Configure credentials above to run
Click "Run" to execute the API call