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

Retrieve API key

GET
https://devapi.withverifa.com/api/v1/api-keys/:api_key_id
GET
/api/v1/api-keys/:api_key_id
$curl https://devapi.withverifa.com/api/v1/api-keys/key_abc123 \
> -H "X-API-Key: <apiKey>" \
> -H "Content-Type: application/json"
1{
2 "id": "key_abc123",
3 "type": "api-key",
4 "environment": "live",
5 "key_prefix": "vk_live_abc1",
6 "is_active": true,
7 "created_at": "2024-01-15T09:30:00Z",
8 "label": "Primary Production Key",
9 "note": "Used for main app integration",
10 "scopes": [
11 "read:verifications",
12 "write:verifications"
13 ],
14 "api_version": "2026-02-01",
15 "default_key_inflection": "camel",
16 "allowed_ips": [
17 "192.168.1.100",
18 "203.0.113.42"
19 ],
20 "expires_at": "2025-12-31T23:59:59Z",
21 "last_used_at": "2024-06-10T14:22:00Z"
22}
Returns a single API key by its public ID. The secret is never returned.
Was this page helpful?
Previous

Update API key

Next
Built with

Authentication

X-API-Keystring

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

Path parameters

api_key_idstringRequired

Headers

Verifa-VersiondateOptional

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

Response

API key details.
idstring
typeenum
Allowed values:
environmentenum
Allowed values:
key_prefixstring
First characters of the key for identification.
is_activeboolean
created_atdatetime
labelstring or null
notestring or null
scopeslist of strings or null
Permission scopes granted to this key.
api_versionstring or null
default_key_inflectionenum
Allowed values:
allowed_ipslist of strings or null
IP allowlist. Null means all IPs are allowed.
expires_atdatetime or null
last_used_atdatetime or null

Errors

401
Unauthorized Error
404
Not Found Error