socure · Capability

Socure Predictive DocV — Document Verification

Socure Predictive Document Verification capability. Creates a DocV transaction (hosted capture session URL), retrieves the verification decision, and exposes the underlying document data, selfie match, and liveness signals.

Socure Predictive DocV — Document Verification is a Naftiko capability published by socure, one of 7 capabilities the APIs.io network indexes for this provider. It bundles 2 operations across the POST and GET methods rooted at /v1/docv/transactions.

The capability includes 1 read-only operation and 1 state-changing operation. Lead operation: Socure Create A DocV Transaction. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Socure, Document Verification, Biometrics, and Liveness.

Run with Naftiko SocureDocument VerificationBiometricsLiveness

What You Can Do

POST
Createdocvtransaction — Socure Create A DocV Transaction
/v1/docv/transactions
GET
Getdocvtransaction — Socure Get A DocV Transaction
/v1/docv/transactions/{docvTransactionId}

MCP Tools

socure-create-docv-transaction

Socure Create A DocV Transaction

socure-get-docv-transaction

Socure Get A DocV Transaction

read-only idempotent

Capability Spec

docv-document-verification.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Socure Predictive DocV — Document Verification
  description: Socure Predictive Document Verification capability. Creates a DocV transaction (hosted capture
    session URL), retrieves the verification decision, and exposes the underlying document data, selfie match,
    and liveness signals.
  tags:
  - Socure
  - Document Verification
  - Biometrics
  - Liveness
  created: '2026-05-25'
  modified: '2026-05-25'
binds:
- namespace: env
  keys:
    SOCURE_API_KEY: SOCURE_API_KEY
capability:
  consumes:
  - type: http
    namespace: docv
    baseUri: https://api.socure.com
    description: Socure DocV business capability.
    resources:
    - name: docv-transactions
      path: /api/3.0/EmailAuthScore
      operations:
      - name: createDocvTransaction
        method: POST
        description: Socure Create A DocV Transaction
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          required: true
    - name: docv-transaction
      path: /api/3.0/documents/{docvTransactionId}
      operations:
      - name: getDocvTransaction
        method: GET
        description: Socure Get A DocV Transaction
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: docvTransactionId
          in: path
          type: string
          required: true
    authentication:
      type: apikey
      key: Authorization
      value: 'SocureApiKey {{env.SOCURE_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: docv-rest
    port: 8080
    resources:
    - path: /v1/docv/transactions
      name: docv-transactions
      operations:
      - method: POST
        name: createDocvTransaction
        description: Socure Create A DocV Transaction
        call: docv.createDocvTransaction
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/docv/transactions/{docvTransactionId}
      name: docv-transaction
      operations:
      - method: GET
        name: getDocvTransaction
        description: Socure Get A DocV Transaction
        call: docv.getDocvTransaction
        with:
          docvTransactionId: rest.path.docvTransactionId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: docv-mcp
    port: 9090
    transport: http
    tools:
    - name: socure-create-docv-transaction
      description: Socure Create A DocV Transaction
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: docv.createDocvTransaction
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: socure-get-docv-transaction
      description: Socure Get A DocV Transaction
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: docv.getDocvTransaction
      with:
        docvTransactionId: tools.docvTransactionId
      outputParameters:
      - type: object
        mapping: $.