Skip to main content
POST
/
v1
/
auth
/
agent
/
claim
Initiate claim flow
curl --request POST \
  --url https://api.vidjutsu.ai/v1/auth/agent/claim \
  --header 'Content-Type: application/json' \
  --data '
{
  "claim_token": "<string>",
  "email": "<string>"
}
'
{
  "registration_id": "<string>",
  "claim_attempt_id": "<string>",
  "expires_at": 123
}

Documentation Index

Fetch the complete documentation index at: https://docs.vidjutsu.ai/llms.txt

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

Body

application/json
claim_token
string
required

Opaque claim_token returned from the initial /v1/auth/agent call.

email
string
required

Email address to send the verification code to.

Response

200 - application/json

The request has succeeded.

registration_id
string
required
claim_attempt_id
string
required

Identifier for this claim attempt.

status
enum<string>
required
Available options:
initiated
expires_at
integer<int64>
required

Unix epoch ms when this claim attempt expires.