Getting Started/Quick Start
Quick Start
Get up and running with Vera API in under 5 minutes.
1
Get your API key
Sign up for a free account and get your API key from the dashboard. Your API key will look like this:
API Key
sk_live_abc123xyz789...2
Install the SDK (optional)
Install our official SDK for your language, or use any HTTP client.
Installation
# Python
pip install vera-sdk
# Node.js
npm install @vera/sdk
# .NET
dotnet add package Vera.SDK3
Make your first request
Try enriching a company domain to get structured business data.
Python
from vera import Vera
client = Vera(api_key="sk_live_abc123xyz...")
# Enrich a company
result = client.enrich("stripe.com")
print(result.name) # "Stripe"
print(result.industry) # "Financial Technology"
print(result.employees) # "5000-10000"Node.js
import { Vera } from '@vera/sdk';
const client = new Vera({ apiKey: 'sk_live_abc123xyz...' });
// Enrich a company
const result = await client.enrich('stripe.com');
console.log(result.name); // "Stripe"
console.log(result.industry); // "Financial Technology"
console.log(result.employees); // "5000-10000"cURL
curl -X POST https://api.vera.com/enrich \
-H "Authorization: Bearer sk_live_abc123xyz..." \
-H "Content-Type: application/json" \
-d '{"url": "stripe.com"}'4
Explore the response
The API returns comprehensive company data in a structured JSON format.
JSON
200 OK
{
"status": "success",
"data": {
"domain": "stripe.com",
"name": "Stripe",
"description": "Financial infrastructure for the internet",
"logo": "https://stripe.com/img/v3/home/social.png",
"industry": "Financial Technology",
"foundedYear": 2010,
"employeeCount": "5000-10000",
"location": "San Francisco, CA",
"socialProfiles": {
"linkedin": "https://linkedin.com/company/stripe",
"twitter": "https://twitter.com/stripe"
},
"confidence": 0.85
}
}