socure ID+ API

Unified multi-module identity, fraud, and risk evaluation

Operations 1

POST /api/3.0/EmailAuthScore Evaluate Identity #

Documentation

Specifications

Schemas & Data

Other Resources

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/socure-id-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

socure-id-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Socure ID+ ID+ API
  version: '3.0'
  description: 'The Socure ID+ API is the unified REST surface for the ID+ platform. A single

    `POST /api/3.0/EmailAuthScore` (legacy name retained for compatibility) accepts a

    `modules` array describing which modules to evaluate — KYC (Socure Verify), eCBSV,

    Sigma Identity Fraud, Sigma Synthetic Fraud, Sigma First-Party Fraud, Email

    RiskScore, Phone RiskScore, Address RiskScore, Digital Intelligence, Graph

    Intelligence, Global Watchlist Screening, Deceased Check, Account Intelligence,

    Prefill, and the Decision rules engine — and returns a single combined response

    with `referenceId`, module result blocks, and an optional `decision` block.

    '
  contact:
    name: Socure Developer Support
    url: https://developer.socure.com
  license:
    name: Socure Customer Terms
    url: https://developer.socure.com/customer-terms
servers:
- url: https://api.socure.com
  description: Production
- url: https://sandbox.socure.com
  description: Sandbox
- url: https://api.socure.us
  description: GovCloud production
security:
- SocureToken: []
tags:
- name: ID+
  description: Unified multi-module identity, fraud, and risk evaluation
paths:
  /api/3.0/EmailAuthScore:
    post:
      tags:
      - ID+
      operationId: evaluateIdentity
      summary: Evaluate Identity
      description: 'Submit an identity payload along with a `modules` array selecting one or more

        Socure modules to evaluate. Returns the combined module result blocks and an

        optional `decision` block when the Decision module is requested.

        '
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/IdPlusRequest'
      responses:
        '200':
          description: Identity evaluation result
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/IdPlusResponse'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          $ref: '#/components/responses/Unauthorized'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  schemas:
    RiskScoreResult:
      type: object
      properties:
        score:
          type: number
          minimum: 0
          maximum: 1
        reasonCodes:
          type: array
          items:
            type: string
    DecisionResult:
      type: object
      properties:
        name:
          type: string
        value:
          type: string
          enum:
          - accept
          - reject
          - review
          - refer
          - resubmit
        ruleSet:
          type: string
        version:
          type: string
    WatchlistResult:
      type: object
      properties:
        global:
          type: object
          properties:
            sources:
              type: array
              items:
                type: object
                properties:
                  sourceListName:
                    type: string
                  matchCount:
                    type: integer
    IdPlusRequest:
      type: object
      required:
      - modules
      properties:
        modules:
          type: array
          description: Modules to evaluate in this request.
          items:
            type: string
            enum:
            - kyc
            - ecbsv
            - sigma
            - synthetic
            - fraud
            - emailrisk
            - phonerisk
            - addressrisk
            - decision
            - watchlist
            - watchliststandard
            - alertlist
            - decasedcheck
            - devicerisk
            - graphintelligence
            - accountintelligence
            - prefill
            - docvtransaction
        customerUserId:
          type: string
          description: Customer-supplied unique identifier for the end user.
        firstName:
          type: string
        surName:
          type: string
        dob:
          type: string
          format: date
        nationalId:
          type: string
          description: SSN/ITIN/national identifier.
        email:
          type: string
          format: email
        mobileNumber:
          type: string
        physicalAddress:
          type: string
        city:
          type: string
        state:
          type: string
        zip:
          type: string
        country:
          type: string
          description: ISO-3166-1 alpha-2 country code.
        ipAddress:
          type: string
        userConsent:
          type: boolean
          description: Required for eCBSV.
        consentTimestamp:
          type: string
          format: date-time
        deviceSessionId:
          type: string
          description: Device session ID from the SigmaDevice SDK.
        docvTransactionId:
          type: string
          description: DocV transaction ID to include document verification results.
    IdPlusResponse:
      type: object
      properties:
        referenceId:
          type: string
          description: Globally unique identifier for this evaluation.
        kyc:
          $ref: '#/components/schemas/KycResult'
        fraud:
          $ref: '#/components/schemas/SigmaResult'
        synthetic:
          $ref: '#/components/schemas/SigmaResult'
        emailRisk:
          $ref: '#/components/schemas/RiskScoreResult'
        phoneRisk:
          $ref: '#/components/schemas/RiskScoreResult'
        addressRisk:
          $ref: '#/components/schemas/RiskScoreResult'
        watchlist:
          $ref: '#/components/schemas/WatchlistResult'
        decision:
          $ref: '#/components/schemas/DecisionResult'
        deceasedCheck:
          type: object
          additionalProperties: true
        accountIntelligence:
          type: object
          additionalProperties: true
    SigmaResult:
      type: object
      properties:
        scores:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              version:
                type: string
              score:
                type: number
                minimum: 0
                maximum: 1
        reasonCodes:
          type: array
          items:
            type: string
    Error:
      type: object
      properties:
        status:
          type: string
        msg:
          type: string
        referenceId:
          type: string
    KycResult:
      type: object
      properties:
        reasonCodes:
          type: array
          items:
            type: string
        fieldValidations:
          type: object
          additionalProperties:
            type: number
            minimum: 0
            maximum: 1
  responses:
    Unauthorized:
      description: Missing or invalid API key.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    RateLimited:
      description: Request throttled.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
    BadRequest:
      description: Malformed request.
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/Error'
  securitySchemes:
    SocureToken:
      type: apiKey
      in: header
      name: Authorization
      description: '`SocureApiKey <api-key>` token issued in the Socure Console. GovCloud customers

        present their GovCloud-scoped key. Treat the key as a bearer secret.

        '