Skip to main content
POST
/
api
/
v1
/
agent
/
verify
Agent Verify
curl --request POST \
  --url https://api.openfunnel.dev/api/v1/agent/verify \
  --header 'Content-Type: application/json' \
  --data '
{
  "email": "founder@example.com",
  "otp_code": "123456"
}
'
{
  "email": "founder@example.com",
  "api_key": "of_1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
  "is_new_user": true
}

Documentation Index

Fetch the complete documentation index at: https://docs.openfunnel.dev/llms.txt

Use this file to discover all available pages before exploring further.

Body

application/json
email
string<email>
required

Email address used during sign-up

otp_code
string
required

6-digit verification code sent to your email

Required string length: 6

Response

Successful Response

email
string<email>
required

Use this value as the X-User-ID header on all subsequent OpenFunnel API requests.

api_key
string
required

Use this value as the X-API-Key header on all subsequent OpenFunnel API requests. Store it securely — this is your only credential and is not retrievable later (sign up again with the same email to recover it).

is_new_user
boolean
required

true if this verification just created a new account; false if it returned an existing user's key.