FireAPI App/Tool - SSO Integration Examples (Common Languages) FireAPI SSO Verify Flow (Multi-Language Examples)# This page provides sample implementations of the FireAPI SSO Verify flow in multiple languages. When FireAPI launches your tool, it redirects the user to your tool URL like: https://yourtool.com/auth/sso?token=xxxxxAllow access only if verified + subscribed
✅ FireAPI Verify Endpoint# Request# https://api.fireapi.io/api/sso/verifyBody# {
"token" : "YOUR_TOKEN"
} Success Response Example# {
"success" : true ,
"data" : {
"user" : {
"id" : "123" ,
"email" : "user@email.com"
} ,
"tool" : {
"id" : "tool_001" ,
"name" : "WebGuard"
} ,
"subscription" : {
"active" : true ,
"plan" : "PRO"
}
}
} Modified at 2026-03-26 17:57:55