API Documentation
RESTful API for domain intelligence
Fast & Reliable
99.9% uptime with avg response time under 200ms
Secure
SHA-256 hashed API keys, HTTPS only, rate limiting
Developer Friendly
JSON responses, clear error codes, code examples
Quick Start
1. Get Your API Key
Navigate to your dashboard and create an API key. The key will only be shown once - save it securely.
2. Make Your First Request
curl -X GET "https://api.globnic.com/v1/domains" \
-H "Authorization: Bearer gn_live_YOUR_API_KEY" \
-H "Content-Type: application/json"3. Handle the Response
{
"success": true,
"data": {
"domains": [...],
"meta": {
"total": 150,
"page": 1,
"perPage": 50
}
},
"rateLimit": {
"remaining": 499,
"resetAt": "2026-01-31T00:00:00Z"
}
}Available Endpoints
| Method | Endpoint | Description | Access |
|---|---|---|---|
| GET | /api/v1/domains | List all available domains with filtering | Sovereign+ |
| GET | /api/v1/domains/:domain | Get detailed domain information and AI analysis | Sovereign+ |
| POST | /api/v1/valuations | Request AI valuation for any domain | Sovereign+ |
| POST | /api/v1/valuations/bulk | Bulk valuation (up to 50/200 domains) | Sovereign+ |
| GET | /api/v1/market/trends | Market trends and category insights | Enterprise |
| POST | /api/v1/webhooks | Configure webhooks for price alerts | Enterprise |
Rate Limits
Sovereign
API Requests500 requests/day
Bulk Valuation50 domains/batch
Enterprise
API Requests1,000 requests/day
Bulk Valuation200 domains/batch
Code Examples
JavaScript / Node.js
const response = await fetch('https://api.globnic.com/v1/domains/example.com', {
headers: {
'Authorization': 'Bearer ' + process.env.GLOBNIC_API_KEY,
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data.domain.valuation); // AI-powered valuationPython
import requests
import os
response = requests.get(
'https://api.globnic.com/v1/domains/example.com',
headers={
'Authorization': f'Bearer {os.environ["GLOBNIC_API_KEY"]}',
'Content-Type': 'application/json'
}
)
data = response.json()
print(data['domain']['valuation']) # AI-powered valuation