For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
  • Getting Started
    • Introduction
    • How Verifa Works
    • Quickstart
    • Choosing an Integration Method
  • Use Cases
    • KYC Onboarding
    • Age Verification
    • AML Compliance
    • Fraud Prevention
    • Marketplace Trust & Safety
  • Core Concepts
    • Overview
    • Sessions
    • Verifications & Checks
    • Workflows
    • Identities
    • Cases
    • Screening & Reports
    • Lists
  • Integration Guides
    • Overview
    • JavaScript SDK
    • Web Capture Flow
    • API-Only Integration
    • Mobile SDK
    • Webhooks Guide
    • MCP Server
    • Migrating from Persona
  • API Details
    • Overview
    • Authentication
    • Pagination
    • Rate Limiting
    • Versioning
    • Errors
    • Webhooks
    • Idempotency
    • Key Inflection
    • Data Access
    • Data Retention
  • Tutorials
    • Creating Your First Verification Session
    • Creating a Workflow
    • Receiving Webhooks & Validating Signatures
    • Handling Webhook Events
    • Custom Document Types & AI Extraction
  • Best Practices
    • Testing
    • Preventing Duplicates
    • Fraud Signals
    • Changelog
  • API Reference
      • GETList API keys
      • POSTCreate API key
      • GETRetrieve API key
      • PATCHUpdate API key
      • POSTExpire API key
      • POSTClone API key
      • GETGet rate limit status
API ReferenceAPI Keys

List API keys

GET
https://devapi.withverifa.com/api/v1/api-keys
GET
/api/v1/api-keys
$curl https://devapi.withverifa.com/api/v1/api-keys \
> -H "X-API-Key: <apiKey>"
1{
2 "data": [
3 {
4 "id": "key_abc123",
5 "type": "api-key",
6 "environment": "live",
7 "key_prefix": "vk_live_abc1",
8 "is_active": true,
9 "created_at": "2024-01-15T09:30:00Z",
10 "label": "string",
11 "note": "string",
12 "scopes": [
13 "string"
14 ],
15 "api_version": "string",
16 "default_key_inflection": "camel",
17 "allowed_ips": [
18 "string"
19 ],
20 "expires_at": "2024-01-15T09:30:00Z",
21 "last_used_at": "2024-01-15T09:30:00Z"
22 }
23 ],
24 "pagination": {
25 "total": 1,
26 "limit": 1,
27 "offset": 1
28 }
29}

Returns API keys for the authenticated organization. Secrets are never returned — use the key prefix to identify keys.

Was this page helpful?
Previous

Create API key

Next
Built with

Authentication

X-API-Keystring

Organization API key. Keys are prefixed with vk_live_ (production) or vk_sandbox_ (sandbox).

Headers

Verifa-VersiondateOptional

API version date string (e.g. 2026-02-01). If omitted, the version pinned to your API key is used.

Query parameters

environmentenumOptional
Filter by environment.
Allowed values:
limitintegerOptional1-100Defaults to 50
offsetintegerOptional>=0Defaults to 0

Response

Paginated list of API keys.
datalist of objects
paginationobject

Errors

401
Unauthorized Error