Passbase Project API

Read project settings and verification configuration.

Operations 1

GET /settings Get project settings #

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/passbase-project-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

passbase-project-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Passbase Verifications Identity Project API
  version: 2.0.0
  description: The Passbase Verifications API. A User submits a video selfie and valid identifying Resources during a Verification guided by the Passbase client-side integration. Data points are extracted, digitized, and authenticated, becoming part of the User's Identity. The User consents to share Resources and/or Data points, which are passed to you for account decisions. Server-to-server access uses the secret API key.
  contact:
    name: Passbase Developer Support
    email: developer@passbase.com
  x-status: discontinued
  x-successor: Parallel Markets
servers:
- url: https://api.passbase.com/verification/v2
  description: Production (historical; host no longer resolvable)
security:
- SecuredKeyAuth: []
tags:
- name: Project
  description: Read project settings and verification configuration.
paths:
  /settings:
    get:
      tags:
      - Project
      operationId: getSettings
      summary: Get project settings
      description: Get the settings of your project.
      responses:
        '200':
          description: The project settings.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectSettings'
        '401':
          $ref: '#/components/responses/Unauthorized'
components:
  responses:
    Unauthorized:
      description: Authentication credentials were missing or invalid.
  schemas:
    ProjectSettingsCustomizations:
      type: object
      properties:
        button_color:
          type: string
          description: '"Verify Me" button background color'
        accent_color:
          type: string
          description: Accent color during the verification flow
        font_family:
          type: string
          description: Font used in the verification flow
    ProjectSettings:
      type: object
      properties:
        id:
          type: string
          description: Unique ID of the project
        slug:
          type: string
          description: Slugs are meant to verify people just with the link
        environment:
          type: string
        organization:
          type: string
          description: Name of the organization that owns this project
        customizations:
          $ref: '#/components/schemas/ProjectSettingsCustomizations'
        verification_steps:
          type: array
          items:
            $ref: '#/components/schemas/ProjectSettingsVerificationSteps'
    ProjectSettingsVerificationSteps:
      type: object
      properties:
        step:
          type: string
        resource_types:
          type: array
          items:
            type: string
  securitySchemes:
    SecuredKeyAuth:
      type: apiKey
      in: header
      name: X-API-KEY
      description: Secret API key sent in the X-API-KEY header. A Bearer JWT (identity_access_token) may also be supplied by prefixing the header value with "Bearer ".