Integrate credibility

Tythe provides modular APIs and SDKs that let you verify identities, bind actions to trust data, and query credibility metrics across the network.


Core Capabilities

Integration Scope: Each endpoint is modular and can be deployed independently. For example, a developer may use only TRIS Auth for identity binding, or only DISC Queries for data analytics, without integrating the full trust stack.

  • TRIS Auth — Authenticate verified identities through decentralized, zk-backed sessions.

    Endpoints:

    • POST /v1/tris/auth/siwe/start

    • POST /v1/tris/auth/siwe/verify

    • POST /v1/tris/token/refresh

  • Wallet-to-TRIS Migration — Link and ingest onchain history for richer trust profiles.

    Endpoints:

    • POST /v1/wallets/link

    • POST /v1/wallets/ingest

  • Trovebook Integration — Submit verifiable records of project milestones, user activity, or AI behavior.

    Endpoint:

    • POST /v1/trove/submit

  • DISC Queries — Retrieve trust data for evaluation, risk modeling, or AI training.

    Endpoints:

    • GET /v1/disc/score/:tris_id

    • GET /v1/disc/metrics/:tris_id?metrics=finance,security,compliance

    • GET /v1/disc/report/:tris_id

Payload Example (Metric Health Query):

# Metric Health (bundled)
GET /v1/disc/metrics/tris:satoshi?metrics=finance,security,compliance

Response Example (Metric Health Query):

{
  "status": "success",
  "proof": "0x8a43a2b...9d1",
  "payload": {
    "finance": 0.72,
    "security": 0.68,
    "compliance": 0.74
  },
  "timestamp": "2025-11-02T21:11:43Z"
}

FAQs

Do I need to run my own node to integrate Tythe? No. Tythe operates off-chain with verifiable Merkle proofs anchored daily. You can use the APIs directly or work through Tythe SDKs such as @tythe/core and @tythe/disc.

Can I link multiple wallets to a single TRIS ID? Yes. Developers can support Multi-Wallet linking to improve data completeness. TRIS is MultiVM-compatible by design, ensuring future support beyond EVM-based environments.

Is TRIS Auth a replacement for wallet authentication? Yes. TRIS Auth extends wallet sign-ins with zk-backed identity verification, multi-source credential binding, and optional compliance checks for deeper assurance.

How is user privacy protected when submitting proofs? All proofs are verified using zero-knowledge methods and processed through Trusted Execution Environments (TEEs), ensuring that no personal data leaves the user’s control.

Can I query DISC data in bulk? Yes. Batch endpoints for disc/score, disc/metrics, and disc/report are supported, allowing multi-user requests and efficient system-level analysis.


Last updated

Was this helpful?