Agentcard · Arazzo Workflow

Agentcard — connect a user and verify identity

Version 1.0.0

Connect an end user, record consent, and run identity verification (KYC) end to end.

1 workflow 3 source APIs 1 provider
View Spec View on GitHub CompanyPaymentsVirtual CardsCard IssuingAI AgentsAgentic CommerceMCPFintechWalletsVisaArazzoWorkflows

Provider

agentcard

Workflows

connectAndVerifyIdentity
Mint a platform token, connect a user by code, record consent, and verify their ID.
7 steps inputs: client_id, client_secret, code, email, id_back_base64, id_front_base64 outputs: kyc_status, user_access_token
1
mintToken
2
startConnect
3
verifyConnect
4
recordConsent
5
uploadFront
6
uploadBack
7
checkStatus

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Agentcard — connect a user and verify identity
  version: 1.0.0
  summary: Connect an end user, record consent, and run identity verification (KYC) end to end.
sourceDescriptions:
- name: authenticationApi
  url: ../openapi/agentcard-authentication-api-openapi.yml
  type: openapi
- name: connectApi
  url: ../openapi/agentcard-connect-api-openapi.yml
  type: openapi
- name: identityVerificationApi
  url: ../openapi/agentcard-identity-verification-api-openapi.yml
  type: openapi
workflows:
- workflowId: connectAndVerifyIdentity
  summary: Mint a platform token, connect a user by code, record consent, and verify their ID.
  inputs:
    type: object
    properties:
      client_id: {type: string}
      client_secret: {type: string}
      email: {type: string}
      code: {type: string}
      id_front_base64: {type: string}
      id_back_base64: {type: string}
  steps:
  - stepId: mintToken
    operationId: createAccessToken
    requestBody:
      contentType: application/json
      payload:
        grant_type: client_credentials
        client_id: $inputs.client_id
        client_secret: $inputs.client_secret
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      access_token: $response.body#/access_token
  - stepId: startConnect
    operationId: connectStart
    requestBody:
      contentType: application/json
      payload:
        email: $inputs.email
    successCriteria:
    - condition: $statusCode == 201
  - stepId: verifyConnect
    operationId: connectVerify
    requestBody:
      contentType: application/json
      payload:
        code: $inputs.code
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      user_access_token: $response.body#/access_token
  - stepId: recordConsent
    operationId: connectConsent
    successCriteria:
    - condition: $statusCode == 201
  - stepId: uploadFront
    operationId: kycUploadFront
    requestBody:
      contentType: application/json
      payload:
        image: $inputs.id_front_base64
    successCriteria:
    - condition: $statusCode == 200
  - stepId: uploadBack
    operationId: kycUploadBack
    requestBody:
      contentType: application/json
      payload:
        image: $inputs.id_back_base64
    successCriteria:
    - condition: $statusCode == 200
  - stepId: checkStatus
    operationId: kycGetStatus
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      kyc_status: $response.body#/status
  outputs:
    user_access_token: $steps.verifyConnect.user_access_token
    kyc_status: $steps.checkStatus.kyc_status

Work with this as data

Every workflow 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 arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • 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 workflow
curl "https://apis.io/api/v1/arazzo/agentcard-connect-and-verify.arazzo"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?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.