Evident

Evident (Evident ID) is an identity and credential verification platform that lets businesses verify identity, background, certifications, licenses, and insurance (Certificate of Insurance / COI) on third parties through a single REST API. Its VerifyAPI and SubmitAPI orchestrate verification requests across thousands of attributes and authoritative data sources, returning fact-checked results with webhook notifications.

6 APIs 0 Features
Identity VerificationCredential VerificationBackground CheckInsurance VerificationCOI

APIs

Evident Verification Requests API

VerifyAPI is a RESTful JSON API for creating a verification request and retrieving information about an existing request. A request is composed of one or more requested attribut...

Evident Attributes & Credentials API

SubmitAPI accepts the personal data and credentials needed to satisfy a verification request (for example name and certificate number for a certification attribute), authenticat...

Evident Identity Assurance API

Identity, background, and credential assurance expressed as verifiable attributes - the platform can verify thousands of attributes about an individual drawn from authoritative ...

Evident Insurance & COI Verification API

Insurance, contract, and Certificate of Insurance (COI) verification modeled as verification-request attributes, enabling automated checks of coverage and credentials on supplie...

Evident Results API

Retrieve the status and results of a verification request. Each requested attribute is paired with a result object carrying a status, type, and a values array whose first value ...

Evident Webhooks API

Webhook callbacks notify your server of request lifecycle events - rpRequestCreated, rpRequestSubmissionCompleted, rpRequestCompleted, rpRequestTimeout, and notificationFailure ...

Collections

Pricing Plans

Evident Id Plans Pricing

4 plans

PLANS

Rate Limits

Evident Id Rate Limits

3 limits

RATE LIMITS

FinOps

Resources

👥
GitHubOrganization
GitHubOrganization
🔗
LinkedIn
LinkedIn
🔗
Website
Website
🔗
Documentation
Documentation
🔗
Plans
Plans
🔗
RateLimits
RateLimits
🔗
FinOps
FinOps

Sources

Raw ↑
opencollection: 1.0.0
info:
  name: Evident VerifyAPI and SubmitAPI
  version: '1.0'
items:
- info:
    name: VerifyAPI
    type: folder
  items:
  - info:
      name: Create a verification request
      type: http
    http:
      method: POST
      url: https://verify.api.evidentid.com/api/v1/verify/requests
      auth:
        type: basic
        username: '{{username}}'
        password: '{{apiKey}}'
      body:
        type: json
        data: "{\n  \"email\": \"user@example.com\",\n  \"summary\": \"Verification request\",\n  \"description\": \"Please\
          \ verify the requested attributes.\",\n  \"userAuthenticationType\": \"blindtrust\",\n  \"attributesRequested\"\
          : [ { \"attributeType\": \"identity_assurance\" } ]\n}"
    docs: Create a request to verify one or more attributes (identity, credential, or insurance / COI) for an end user. Returns
      id, idOwnerId, and a userIdentityToken.
  - info:
      name: Retrieve a verification request
      type: http
    http:
      method: GET
      url: https://verify.api.evidentid.com/api/v1/verify/requests/{{requestId}}
      auth:
        type: basic
        username: '{{username}}'
        password: '{{apiKey}}'
    docs: Retrieve an existing verification request by id, including the status, type, and values of each requested attribute.
- info:
    name: SubmitAPI
    type: folder
  items:
  - info:
      name: Submit personal data for a request
      type: http
    http:
      method: POST
      url: https://submit.api.evidentid.com/api/v1/requests
      auth:
        type: bearer
        token: '{{userIdentityToken}}'
      body:
        type: json
        data: "{\n  \"inputs\": [ { \"type\": \"name\", \"value\": \"Jane Doe\" } ]\n}"
    docs: Send the personal data and credentials needed to satisfy a verification request. Authenticated with the userIdentityToken
      bearer token returned by VerifyAPI.