Home API FAQ

Developer API Reference

Automate your Claude identity verification bypass workflow using our simple RESTful API.

[Global Setup]

BASE URL: https://claudekycbypass.com/
AUTHENTICATION:

Include your acquired Bypass Key (Token) directly in the post payload of the request.

POST

Submit Claude KYC Bypass Task

Submit a target Persona inquiry URL for verification bypass processing. Successful submission deducts exactly 1 Key.

ENDPOINT PATH /kyc/submit
JSON PAYLOAD PARAMETERS
Parameter Type Required Description
key string Yes Your acquired Bypass Token (e.g. `kyc_xxxx`)
kyc_link string Yes The target Persona Inquiry verification link URL
CURL REQUEST EXAMPLE
curl -X POST "https://claudekycbypass.com/kyc/submit" \
  -H "Content-Type: application/json" \
  -d '{
    "key": "kyc_test_token_8888",
    "kyc_link": "https://inquiry.withpersona.com/verify?inquiry-id=inq_xxxxxxxx"
  }'
JSON RESPONSE (200 OK)
{
  "success": true,
  "message": "提交成功,已扣除 1 点数",
  "order": {
    "recharge_key": "kyc_test_token_8888",
    "kyc_link": "https://inquiry.withpersona.com/verify?inquiry-id=inq_xxxxxxxx",
    "status": 0,
    "id": 142
  },
  "remaining_points": 9
}
GET

Query Bypass Task Status

Query the current bypass execution status. The bypass nodes normally complete the verification check within 60 seconds.

ENDPOINT PATH /kyc/list?key={your_bypass_key}
CURL REQUEST EXAMPLE
curl -X GET "https://claudekycbypass.com/kyc/list?key=kyc_test_token_8888"
JSON RESPONSE (200 OK)
[
  {
    "id": 142,
    "recharge_key": "kyc_test_token_8888",
    "kyc_link": "https://inquiry.withpersona.com/verify?inquiry-id=inq_xxxxxxxx",
    "status": 1, 
    "created_at": "2026-07-15T04:18:00.000000Z",
    "updated_at": "2026-07-15T04:19:00.000000Z",
    "status_text": "Completed"
  }
]
* Status codes: `0` = Pending Node Processing, `1` = Bypass Success (Verified), `2` = Override Fail (Declined).