How AI is applied across API Evangelist and APIs.io. Read my AI disclosure →
API Evangelist API Evangelist
Discovery
Learnings
Guidance
Toolbox
Alignment
API Evangelist LLC

Super.ai auth API

Authentication operations for user authentication, authorization, and session management.Authentication endpoints handle user identity verification, token generation, and access control throughout the platform. The system uses JWT (JSON Web Token) based authentication managed through core.flows.super.ai.**Authentication flow:**1. Obtain credentials from your account at core.flows.super.ai2. Authenticate to receive JWT access token and refresh token3. Include access token in API requests via Authorization header4. API validates tokens and extracts user identity and organization context5. Tokens expire after 1 hour and must be refreshed**Key concepts:**- **Bearer Tokens**: Short-lived JWT tokens (1 hour) used for API requests- **Anon-Key**: Long-lived API key used to authenticate to the authentication API.- **Refresh Tokens**: Long-lived tokens used to obtain new access tokens- **Protected Routes**: Most endpoints require valid authentication- **Public Endpoints**: Limited whitelisted paths accessible without auth**Getting started with authentication:**1. **Obtain your Anonymous Key** (public endpoint - no authentication required): ```bash curl https://flows.super.ai/api/auth/anon-key ```2. **Authenticate** to receive your tokens: ```bash curl -X POST 'https://core.flows.super.ai/auth/v1/token?grant_type=password' \ -H 'Content-Type: application/json' \ -H 'apikey: ANON_KEY' \ -d '{"email": "you@example.com", "password": "your-password"}' ``` This will return a JWT access token and refresh token.3. **Use the access token** in your requests: ```bash curl -H "Authorization: Bearer YOUR_ACCESS_TOKEN" \ https://flows.super.ai/api/flows ```**Token management:**- Access tokens expire after 1 hour- Use refresh tokens to obtain new access tokens without re-authenticating- Store tokens securely and never commit them to version controlAll API endpoints (except whitelisted public paths) require authentication. Include your bearer token in the Authorization header: `Bearer `

Super.ai auth API is one of 19 APIs that Super.ai publishes on the APIs.io network, described by a machine-readable OpenAPI specification.

Tagged areas include Authentication. The published artifact set on APIs.io includes an OpenAPI specification, an API reference, and authentication docs.

This API exposes 7 operations across 7 paths, and defines 14 schemas. It is described by OpenAPI 3.2.0, at version 0.1.0.

Requests are made against a single base URL, https://flows.super.ai/api.

7 operations 7 paths 14 schemas 3 GET4 POST

Metadata

The identity and technical contract details declared by the specification.

Specification
OpenAPI 3.2.0
API Version
0.1.0
Base URL
https://flows.super.ai/api
Authentication
HTTP Bearer, API Key
Resource Areas
1

Authentication & Security 2

Super.ai auth API declares 2 security schemes for authenticating requests. It accepts HTTP bearer tokens (JWT) (BearerAuth). An API key is passed in the header as X-API-Key (APIKeyAuth).

  • BearerAuth — JWT Bearer token authentication. Include your access token in the Authorization header as: Bearer YOURACCESSTOKEN Example: Authorization: Bearer eyJhbGciOiJIUz…
  • APIKeyAuth — API key authentication. Include your API key in the X-API-Key header as: X-API-Key YOURAPIKEY Example: X-API-Key: saf1234567890

Paths & Operations 7

Across 7 paths, the API surfaces 7 operations — 3 GET, 4 POST. Each is listed below with its method, path, parameters, and response codes.

auth 7

Authentication operations for user authentication, authorization, and session management. Authentication endpoints handle user identity verification, token generation, and access…

POST
/api/auth/reset-password
Reset Password
reset_password_api_auth_reset_password_post body → 200422
POST
/api/auth/resend-invite
Resend user invitation email
resend_invite_api_auth_resend_invite_post body → 200404500422
GET
/api/auth/login-method
Resolve login method for an email
login_method_api_auth_login_method_get 1 param → 200422
GET
/api/auth/anon-key
Retrieve authentication API key
get_anon_key_api_auth_anon_key_get → 200500422
GET
/api/auth/signup-email-policy
Pre-flight signup email policy check for magic link
signup_email_policy_api_auth_signup_email_policy_get 1 param → 200422
POST
/api/auth/self-service/complete
Complete self-service signup for an authenticated Supabase user
complete_self_service_signup_api_auth_self_service_complete_post → 200400401422
POST
/api/auth/access-request
Submit a self-service access request
create_access_request_api_auth_access_request_post body → 200422

Schemas 14

The contract defines 14 schemas that model the data the API accepts and returns. The most detailed are SelfServiceSignupResponse (5 properties), ResendInviteResponse (3 properties), ErrorDetail (3 properties), AccessRequestCreate (3 properties). Each schema is shown below with its type and property counts.

SignupRejectionReason
string
Machine-readable reasons a signup email is rejected. Surfaced to the client as an error code so the UI can map each to a tailored message (e.g. "use your work…
ResendInviteRequest
object
Request model for resending user invitation. Used to trigger a new invitation email when the original invitation has expired, was not received, or the user nee…
1 property 1 required
AccessRequestCreate
object
A visitor's request for access submitted from the blocked-signup CTA. The min-lengths mirror the client-side form validation; the max-lengths cap abuse on this…
3 properties 3 required
SelfServiceSignupResponse
object
Result of completing self-service signup.
5 properties 5 required
AnonKeyResponse
object
Response model for anonymous authentication key retrieval. Returns the authentication key required for client applications to authenticate with the authenticat…
1 property 1 required
ResetPasswordResponse
object
1 property 1 required
ErrorResponse
object
Standard API error response structure. All error responses from the API follow this format, ensuring consistent error handling for API consumers. Example: { "e…
2 properties 1 required
SignupEmailPolicyResult
object
Pre-flight evaluation of the signup email policy for the magic-link path.
2 properties 1 required
LoginMethod
string
ResendInviteResponse
object
Response model for resend invite operation. Confirms that the invitation email was successfully queued or sent. Actual email delivery depends on external email…
3 properties 3 required
AccessRequestResponse
object
Constant acknowledgement that an access request was received. Deliberately carries no record identifier and is identical whether the request was newly created…
1 property
LoginMethodResult
object
1 property 1 required
ResetPasswordRequest
object
2 properties 1 required
ErrorDetail
object
Standard error detail structure. This model matches the error format returned by the centralized exception handlers in app/api/errors/handlers.py.
3 properties 1 required

Specification

The full machine-readable OpenAPI contract behind this narrative.

Source

superai-auth-api-openapi.yml Raw ↑

Other APIs Super.ai publishes across the network.

Super.ai files API
Super.ai flow-executions API
Super.ai flows API
Super.ai human-review-tasks API
Super.ai integrations API
Super.ai models API
Super.ai organizations API
Super.ai plugins API
Super.ai profile API
Super.ai service-accounts API
Super.ai sso API
Super.ai task-data API
Where this information came from

This is an independent, third-party profile of Super.ai auth API, published by API Evangelist. We do not operate, host, resell, or support these APIs, and we are not affiliated with or endorsed by the company unless stated above. Everything here is built from publicly available information — the company's own site, developer portal, documentation, public repositories, and the specifications it publishes for public use. Nothing is obtained by breaching a system, defeating an access control, or using credentials.

The Kin Score and Agent Readiness rating are independently calculated assessments of a company's public API artifacts, scored against a published rubric. They are not certifications, endorsements, security assessments, or audits.

Corrections, re-scores, and removal are free — no partnership or purchase required, and you do not need to justify the request. A removed company is recorded as unrated, never scored zero for having asked. Acknowledgement within one business day; removal within two.

info@apievangelist.com · Read the full data-sourcing policy →
On a security or compliance team? Put security in the subject line and you will get a person, not a form — we will tell you exactly which public URLs this profile was built from.