🚀 Early access to pepiko.ai's Safety APIs. Join the waitlist →
 

Integrate pepiko.ai in 10 Minutes

Get up and running with our API in just a few steps.

1. Create an account

Sign up, create your workspace, and invite your team.
# Choose a workspace and copy your API key
PEPIKO_API_KEY=pk_live_xxx

2. Get your API key

Find your API key in the dashboard under Settings → API Keys.

3. Make your first request

curl --request POST \
"$PIKUAI_BASE_URL/api/v1/guardrail/classify" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "Authorization: Bearer $PIKUAI_API_KEY" \
--data '{
"session_id": "session-123",
"message": "I feel alone and I do not know what to do.",
"child_profile": {
"age": 11,
"age_group": "11-12",
"language": "en"
}
}'

4. Understand the response

Use the risk level, policy bucket, and recommended action to decide what your product should do next. View full API docs