Socure Decision API

Socure's rule-based decisioning module returns a single deterministic outcome — accept, reject, review, refer, or resubmit — derived from ID+ module scores and customer-configured rules. Decision rules are authored in the Socure Console and applied on every ID+ call when the `decision.module` block is included in the request modules array.

Documentation

Specifications

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-decision-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 email required.

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

OpenAPI Specification

socure-decision-api-openapi.yml Raw ↑
openapi: 3.0.3
info:
  title: Socure Account Intelligence Decision API
  version: '3.0'
  description: 'Real-time validation of US bank accounts — verifying open/closed status,

    ownership (name match), and account-type signals. Powers funding-account checks

    for fintech onboarding, payroll, and ACH origination flows without requiring

    micro-deposits or end-user credentials.

    '
servers:
- url: https://api.socure.com
  description: Production
- url: https://sandbox.socure.com
  description: Sandbox
security:
- SocureToken: []
tags:
- name: Decision
paths:
  /api/3.0/EmailAuthScore:
    post:
      tags:
      - Decision
      operationId: evaluateDecision
      summary: Evaluate A Decision
      description: 'Invoke the Decision module alongside other ID+ modules. The Decision block in

        the response carries the configured rule set name, version, and the resulting

        outcome.

        '
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - modules
              properties:
                modules:
                  type: array
                  items:
                    type: string
                    enum:
                    - decision
                    - kyc
                    - sigma
                    - synthetic
                    - watchlist
                customerUserId:
                  type: string
                firstName:
                  type: string
                surName:
                  type: string
                dob:
                  type: string
                  format: date
                nationalId:
                  type: string
      responses:
        '200':
          description: Decision result.
          content:
            application/json:
              schema:
                type: object
                properties:
                  referenceId:
                    type: string
                  decision:
                    type: object
                    properties:
                      name:
                        type: string
                      value:
                        type: string
                        enum:
                        - accept
                        - reject
                        - review
                        - refer
                        - resubmit
                      ruleSet:
                        type: string
                      version:
                        type: string
components:
  securitySchemes:
    SocureToken:
      type: apiKey
      in: header
      name: Authorization