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

Get rate limit status

GET
https://devapi.withverifa.com/api/v1/rate-limits
GET
/api/v1/rate-limits
$curl https://devapi.withverifa.com/api/v1/rate-limits \
> -H "X-API-Key: <apiKey>"
1{
2 "rate_limit": {
3 "limit": 1,
4 "remaining": 1,
5 "reset_in_seconds": 1,
6 "window_seconds": 1
7 },
8 "quotas": {},
9 "plan": "professional",
10 "environment": "sandbox"
11}
Returns the current rate limit and quota usage for the caller's API key and environment. This endpoint does not consume a meaningful request against your rate limit. Use this to monitor your remaining quota before making bulk API calls.
Was this page helpful?
Previous

Test webhook delivery

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.

Key-InflectionenumOptionalDefaults to snake

Response key casing. Defaults to snake.

Allowed values:

Response

Current rate limit and quota status.
rate_limitobject

Per-minute rate limit status for this environment.

quotasmap from strings to objects

Per-product quota usage. Keys are quota identifiers (e.g., verification_creation, key_creation).

planstring
The organization's current plan.
environmentenum

The environment for this API key (sandbox or live).

Allowed values:

Errors

401
Unauthorized Error