ZELF
Zelf Documentation
Zelf Documentation
  • Welcome to Zelf World
  • Getting Started
    • How it works
    • WhitePaper
    • Zelf Proofs vs Others
    • Privacy Preserving
    • Use cases
    • Downloads
  • Zelf Name Service
    • Offline Version
      • Decryption
    • Online Version
      • Retrieve public key
      • Create a session
      • PGP Encryption
      • Lease a Zelf Name
      • Preview a ZelfName
      • Decrypt a ZelfName
    • Arweave ZNS Storage
    • Figma Design Planning
  • Functions
    • Authentication
    • Create a ZelfProof
    • Decrypt a ZelfProof
    • Preview ZelfProof
  • Integrations
  • Zelf Legal
    • Team Members
    • Terms of Use
    • Privacy Policy
  • Airdrop
    • Airdrop Rules
    • Reglas de Airdrop
    • Pricing per Domain
  • Verify our Partners
    • Acquisition Team
  • Roadmap
    • Q1 2025
    • Q2 2025
    • Q3 2025
    • Q4 2025
Powered by GitBook
On this page
  • Endpoint
  • Request
  • Body
  • Responses

Was this helpful?

  1. Functions

Create a ZelfProof

PreviousAuthenticationNextDecrypt a ZelfProof

Last updated 18 days ago

Was this helpful?

Endpoint

POST https://api.zelf.world/api/zelf-proof/encrypt

This endpoint allows the creation of a new ZelfProof as raw bytes encoded in base64. These are the same bytes used to generate the ZelfQR code.

Request

  • Endpoint: /api/zelf-proof/encrypt

  • Method: POST

  • Content-Type: application/json

Body

The request body should be a JSON object containing the following fields:

{
  "livenessDetectionPriorCreation": false,
  "publicData": {
    "ethAddress": "0x13901AE0F17E2875E86C86721f9943598601b0C4"
  },
  "faceBase64": "face_image_bytes_as_base64",
  "livenessLevel": "REGULAR",
  "metadata": {
    "mnemonic": "pistol cloth equal legend category dry wine enjoy rookie artwork portion december"
  },
  "os": "DESKTOP",
  "password": "optional",
  "identifier": "A0123453",
  "referenceFaceBase64": "optional_base64_encoded_reference_face_image",
  "requireLiveness": true,
  "tolerance": "REGULAR",
  "verifierKey": "optional_auth_key"
}

Fields:

  • livenessDetectionPriorCreation: Boolean (Optional) - If true, the face must be live to create the ZelfProof.

  • publicData: object (Optional) - Cleartext data associated with the record, such as masked_id.

  • faceBase64: string (Required) - Base64 encoded face image data.

  • livenessLevel: string (Optional) - Specifies the tolerance for face liveness checks. E.g., "REGULAR".

  • metadata: object (Optional) - Additional metadata in JSON format associated with the ZelfProof.

  • os: string (Optional) - The operating system where the request originates, e.g., "DESKTOP".

  • password: string (Optional) - A password for additional security.

  • identifier: string (Optional) - An ID associated with the record.

  • referenceFaceBase64: string (Optional) - Base64 encoded reference face image. Used for matching with the faceBase64.

  • requireLiveness: Boolean (Optional) - If true, the face must be live.

  • tolerance: string (Optional) - Specifies the tolerance for face matching. E.g., "REGULAR".

  • verifierKey: string (Optional) - An authentication key required for decrypting the ZelfProof if specified.

Responses

{
  "zelfProof": "ApCvClE+z5yu2fKvayvzQ0zEDZ+/jdzPd3ZhiQ+GdH363JQOGHLyia7Ia4Yf+yD5CMJDfACjoroVt5UJl453KZ/7uqG01eAV+8B5lRc2lV96R2mIAVH5YedAY2r7AIwVPHqSinCIOMqUVlaWJxzjSy0bleYhM4y+vEifQEdaumt1CwhOW1KAU8MFGzW2cFZqppmeKBHz5NlVvcFEmlRkVVgy03LnddibSjVhQ+uaC/TH+aWmejZGx4wYvCtuFGISQsvpJ5aP0WdNlrD45PDxpE2WnpQ2S/XBAFM6jrm6CBEbh1asisH/8T+GAG+VSqZR2/GITzgRFmzfN8gUgPHks4eZX+bvjrFkgbyUc96WaQdyGDu5r4mTVm2H/wrLE/6/bh7EE+skajgDNwhp5oWRNDOzr0GSIaQYX/hP0faF4qL/MUQkCpqzA82KjBGzjoc7q+O3u/4Ym71E2cVvY7f6aNda+C/CMH8wwEbI05WupNTYcZ1MfeViMFcb/t2SVFpI4WtbpmTuR6C1fZ7FtwTMCnN1vif5P5ZceOLUVdYqHjEifKpAi1Jl0Ww9yyRxhLMRzAjfDV/b6tdWc5gJgGSIHylASv+O9TIAf9Alv4uKSuf/nvUlsjdXfjC7DHC58NFXYAcpwWsa4wvbqRUWOnYSwQ6pec7ZFGLntbl4sSRjHeScb3P0yhqYN8XKSO2KpeXXQTIVowqnw5I6sUNOveMvPSEQlMdUS1iMbdLE1RFc6mIkkihiqEi8pKcfMuaG/OtXIr0d6Y8qaP0vZaVWtW5jZLcGbaXN0EvckmiGxXg3dqlockr2RrEz3PlGyZ+1RRxzjXLmo2qVXl3LdCqbx2DFqu04REH4uzqS4n3Aw2HtuCXm5i3vykXxAlZPUiXrHhEy1PiixklP9+wYUTNsot80926RoH94IrCsrfAqbwGeOFq1sPOPFv8f3UXRfhWrZvbYWzlOTiCk1EYRJocjOzeiy7Myd8nROG6cyxMxSGzeWcO/qvkeAqBqAehDMJZfcM63TAPk7OQ73oPPhPRKiM7hjVE0XSD1ZJT3mDcruJiu9dPtFep+pA=="
}
{
    "error": "Provided face image could not be decoded as a base64 string."
}
{
    "error": "Protected resource, use Authorization header to get access"
}
request entity too large

Error Codes

Here are some specific error codes that might be returned:

  • ERR_INVALID_IMAGE: Invalid base64 string for the face image.

  • ERR_NO_FACE_DETECTED: No face detected in the image.

  • ERR_MULTIPLE_FACES_DETECTED: Multiple faces detected in the image.

  • ERR_REF_FACE_NOT_MATCHED: Reference face does not match the input face.

  • ERR_LIVENESS_FAILED: Liveness check failed for the input face.

  • ERR_LIVENESS_FACE_ANGLE_TOO_LARGE: The face angle is too large, making liveness check impossible.

  • ERR_LIVENESS_FACE_IS_OCCLUDED: The face is occluded (e.g., by a mask).

  • ERR_LIVENESS_FACE_CLOSE_TO_BORDER: The face is too close to the border of the image.

  • ERR_LIVENESS_FACE_TOO_SMALL: The face is too small in the image.

  • ERR_LIVENESS_EYES_CLOSED: The eyes are closed in the image.