ZELF
Zelf Documentation
Zelf Documentation
  • Welcome
  • Getting Started
    • How it works
    • WhitePaper
    • Zelf Proofs vs Others
    • Privacy Preserving
    • Use cases
    • Downloads
  • Functions
    • Authentication
    • Create a ZelfProof
    • Decrypt a ZelfProof
    • Preview ZelfProof
  • 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
    • Zelf Wallet Design
  • BlockChains
    • MINA
      • Get Balance
      • Get Token
      • Get Transactions
    • ETH
      • Adress Lookup
      • Transactions list
      • Transaction details
      • Gas Tracker
  • 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
  • Frequently Asked Questions (FAQs)

Was this helpful?

  1. Functions

Create a ZelfProof

PreviousAuthenticationNextDecrypt a ZelfProof

Last updated 6 months 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": "wV4DP6X2TUzD3QISAQdAhqpw8Wau9G1td1yoKeBdkBabX143gBojODIePPsQ
5SEwmmCVDJaxDQe8tcxQUww/XicXEZS042TraT213VJ/w1KU17ZP40/x+vKr
ySwxJJ1n0sMGAbaU75TzCo....JRBhMZpO0G+5IWrS+UXP0SqXc
GvPOPkE53sh671wN1ritaM8Dnrs"
}
{
    "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.

Frequently Asked Questions (FAQs)

Q: What happens if someone else tries to generate a ZelfProof using my face?

A: Zelf ensures that each ZelfProof is unique and tied to the specific conditions (metadata, password) provided at the time of creation. Without the exact same inputs, a different ZelfProof will be generated, preventing unauthorized access. That without considering that we require a liveness detection on the encryption as one of the params of our SDK/API function.

Q: Can the ZelfProof be used across different wallets/platforms?

A: Yes, a ZelfProof can be used across various platforms for authentication, encryption, and verification purposes. The integration is seamless and designed to work in diverse environments.