SDK Reference

Comprehensive documentation for our open-source SDKs. Find detailed API references and code samples for Rust, Python, and JavaScript.

API Libraries

🦀

Rust SDK

  • • Safe identity verification API
  • • Full Wasm target with Node.js integration
  • • Zero overhead cryptographic operations
View on GitHub
🐍

Python SDK

  • • Async API for Python 3.10+
  • • Jupyter notebook compatibility
  • • Full API coverage for core features
View on GitHub
🧪

JavaScript SDK

  • • Browser and Node.js support
  • • Type-safe TypeScript support
  • • Modern cryptographic bindings
View on GitHub

REST Reference

POST /identities/verify

curl -X 'POST' 'https://api.palap.org/verify'

Request Format

{
  "did": {"string"},
  "token": {"string"},
  "proof": {
    "signature": {"string"],
    "timestamp": {"date-time"},
    "issuers": [string[]]
  }
}
                            

Response Format

{
  "valid": bool,
  "reason": {"string"},
  "valid_for": {string},
  "issued_for": {"did"},
  "proof_type": {"string"}
}