Signzy · Agentic Access

Signzy Agentic Access

x-agentic-access generated

Signzy exposes 6 API operations that an AI agent could call, of which 5 are state-changing ‘acting’ operations. This is a recommended x-agentic-access execution contract — the scope, audience, consequence tier, short-lived token constraints, and escalation each action should carry before it is handed to an autonomous agent.

By consequence: 1 read and 5 write.

Contracts are classified heuristically from the provider’s OpenAPI and refresh on every APIs.io network build; audience is bound per deployment. The model follows Curity’s Access Intelligence (apidays Munich 2026). Browse every provider’s agent contracts at agentic-access.apis.io.

Identity VerificationKYCKYBAMLOnboardingComplianceRegTech
Operations: 6 Acting: 5 Human-in-the-loop: 0 Method: generated

By consequence

read 1 write 5

Source

Agentic Access

Raw ↑
generated: '2026-07-17'
method: generated
source: openapi/signzy-openapi.yml
description: Recommended x-agentic-access execution contracts, classified heuristically from
  the OpenAPI. A governance starting point for exposing this API to AI agents — review and bind
  audience per deployment. Signzy operations touch PII, biometric, and financial identity data,
  so most write operations should require a subject, tight token TTLs, and audit. See
  research/curity/agentic-governance/.
summary:
  operations: 6
  by_action_class:
    acting: 5
    connected: 1
  by_consequence:
    write: 5
    read: 1
  human_in_the_loop_required: 0
operations:
- path: /api/customers/login
  method: post
  operationId: login
  x-agentic-access:
    action-class: connected
    consequence: read
    subject: required
    token:
      max-ttl: 900
    audit: required
    note: Issues an access token; treat credentials as high-value secrets.
- path: /api/customers/logout
  method: post
  operationId: logout
  x-agentic-access:
    action-class: acting
    consequence: write
    subject: required
    audience: null
    token:
      max-ttl: 900
    audit: required
- path: /api/v3/aadhaar/verify
  method: post
  operationId: verifyAadhaar
  x-agentic-access:
    action-class: acting
    consequence: write
    subject: required
    audience: null
    token:
      max-ttl: 600
    escalation:
      human-in-the-loop: conditional
      triggers:
      - abnormal
      - high-value
      - pii
    audit: required
    note: Processes Indian national-ID PII; requires explicit end-user consent.
- path: /api/v3/pan/simple
  method: post
  operationId: verifyPan
  x-agentic-access:
    action-class: acting
    consequence: write
    subject: required
    audience: null
    token:
      max-ttl: 600
    escalation:
      human-in-the-loop: conditional
      triggers:
      - abnormal
      - high-value
      - pii
    audit: required
    note: Processes Indian tax-identity PII; requires explicit end-user consent.
- path: /api/v3/us/document-intelligence-advance
  method: post
  operationId: usDocumentIntelligenceAdvance
  x-agentic-access:
    action-class: acting
    consequence: write
    subject: required
    audience: null
    token:
      max-ttl: 600
    escalation:
      human-in-the-loop: conditional
      triggers:
      - abnormal
      - high-value
      - pii
    audit: required
    note: Processes US identity-document images and biometric-adjacent data.
- path: /api/v3/underwriting/get-passbook-otp
  method: post
  operationId: getPassbookOtp
  x-agentic-access:
    action-class: acting
    consequence: write
    subject: required
    audience: null
    token:
      max-ttl: 600
    escalation:
      human-in-the-loop: conditional
      triggers:
      - abnormal
      - high-value
    audit: required
    note: Triggers an OTP against a real bank account; guard against abuse.