Accredify Keys API

The Keys API from Accredify — 1 operation(s) for keys.

Operations 1

POST /verification/v1/extract-keys Extract Keys #

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/accredify0604-keys-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

accredify0604-keys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Verification Module Keys API
  version: '1.0'
  description: Verification module endpoints
  contact:
    name: Accredify
    url: https://accredify.io
    email: support@accredify.io
  termsOfService: https://www.accredify.io/legal
servers:
- url: https://nexus.staging.accredify.io
  description: Staging
- url: https://nexus.uat.accredify.io
  description: UAT
- url: https://nexus.accredify.io
  description: Production
tags:
- name: Keys
paths:
  /verification/v1/extract-keys:
    parameters: []
    post:
      summary: Extract Keys
      tags:
      - Keys
      security:
      - OAuth2:
        - verification-suite
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: object
                    properties:
                      keys:
                        type: array
                        items:
                          type: string
                x-examples:
                  Example 1:
                    data:
                      keys:
                      - user
                      - user.name
                      - user.hobbies.0
                      - user.hobbies.1
                      - user.address
                      - user.address.street
                      - user.address.city
              examples:
                Example 1:
                  value:
                    data:
                      keys:
                      - user
                      - user.name
                      - user.hobbies.0
                      - user.hobbies.1
                      - user.address
                      - user.address.street
                      - user.address.city
        '422':
          description: Unprocessable Entity
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
                    description: Present when the supplied credential format is invalid.
                  message:
                    type: string
                    description: Present when the request fails input validation.
                  errors:
                    type: object
                    additionalProperties:
                      type: array
                      items:
                        type: string
              examples:
                Invalid credential:
                  value:
                    error: Invalid Verifiable Credential format
                Missing input:
                  value:
                    message: The file field is required when json is not present.
                    errors:
                      file:
                      - The file field is required when json is not present.
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                type: object
                properties:
                  error:
                    type: string
              examples:
                Unexpected error:
                  value:
                    error: An unexpected error occurred
      operationId: extract-keys
      x-stoplight:
        id: bnpq81wlo6myw
      description: 'This endpoint allows you to pass in a Verifiable Credentials and have the keys that can be extracted returned.


        This endpoint does **NOT** perform verification of the supplied credential.


        This endpoint is to be used in conjunction with the verify endpoint so that the caller knows what can be passed for verified data extraction in the verify api.'
      requestBody:
        required: true
        description: 'For JSON formatted documents, the request should just contain the document/credential.


          For PDF documents, the request should contain the file.'
        content:
          multipart/form-data:
            schema:
              type: object
              properties:
                file:
                  type: string
                  x-stoplight:
                    id: o8h8huhorznwa
                  format: binary
                json:
                  type: string
                  x-stoplight:
                    id: 54soma3y2r228
                drill_into_arrays:
                  type: boolean
                  x-stoplight:
                    id: ivnsm8vcsx0zw
                  description: "This parameter defines if JSON Arrays should be expanded into.\n\nFor example:\nInput array:\n\n ```json\n[\n     'user' => [\n         'name' => 'John',\n         'hobbies' => ['reading', 'gaming'],\n         'address' => [\n             'street' => '123 Main St',\n             'city' => 'Anytown'\n         ]\n     ]\n ]\n```\n\n With drill_into_arrays = false:\n `['user', 'user.name', 'user.hobbies', 'user.address', 'user.address.street', 'user.address.city']`\n\n With drill_into_arrays = true:\n `['user', 'user.name', 'user.hobbies', 'user.hobbies.0', 'user.hobbies.1', 'user.address', 'user.address.street', 'user.address.city']`\n"
            examples:
              JSON credential as form field:
                value:
                  json: '{"user":{"name":"John","hobbies":["reading","gaming"],"address":{"street":"123 Main St","city":"Anytown"}}}'
                  drill_into_arrays: true
      parameters: []
components:
  securitySchemes:
    OAuth2:
      type: oauth2
      description: OAuth2 client credentials flow
      flows:
        clientCredentials:
          tokenUrl: /oauth/token
          scopes:
            verification-suite: Ability to access the verification suite APIs