Skip to main content

Interactive API Explorer

Test API endpoints directly from your browser with the Swagger UI interactive documentation. Explore request/response schemas, authentication, and try live API calls.

OpenAPI Specification

Vertaa API v1 (2025-01-10)

🚧 Coming Soon: Full Interactive Explorer

We're implementing a full Swagger UI integration for interactive API testing. In the meantime:

Quick Start

1. Get your API key

Generate an API key from your dashboard

2. Test with cURL

curl -X POST https://vertaaux.ai/v1/audit \
  -H "X-API-Key: YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"url": "https://example.com", "mode": "basic"}'

3. Check result

curl -X GET https://vertaaux.ai/v1/audit/{job_id} \
  -H "X-API-Key: YOUR_API_KEY"

Postman Collection

Import our official Postman collection for quick testing

Coming Soon

Generate Collection from OpenAPI

  1. Download OpenAPI spec
  2. Open Postman → Import → Select OpenAPI 3.0 file
  3. Configure environment variables:
    • base_url: https://vertaaux.ai/v1
    • api_key: Your API key from dashboard
  4. Start testing endpoints

Tip: Use Postman's Collection Runner to execute multiple audit requests in sequence with different URLs.

Official SDKs

TypeScript / JavaScript

Alpha

Type-safe SDK generated from OpenAPI spec

npm install @vertaaux/sdk-js

Coming soon to npm registry

Python

Alpha

Generated client with full type hints

pip install vertaaux-python

Coming soon to PyPI

Current Status: SDKs are available in the repository at /sdk directory. Full documentation and npm/PyPI publishing coming soon.

View SDK Examples →

Alternative Testing Tools

Swagger Editor

Import our OpenAPI spec into the online editor

Open Editor

Insomnia

Import OpenAPI spec or use as REST client

Download Insomnia

HTTPie

Command-line HTTP client with syntax highlighting

Learn more about HTTPie