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

MethodEndpointDescriptionAccess
GET/api/v1/domainsList all available domains with filteringSovereign+
GET/api/v1/domains/:domainGet detailed domain information and AI analysisSovereign+
POST/api/v1/valuationsRequest AI valuation for any domainSovereign+
POST/api/v1/valuations/bulkBulk valuation (up to 50/200 domains)Sovereign+
GET/api/v1/market/trendsMarket trends and category insightsEnterprise
POST/api/v1/webhooksConfigure webhooks for price alertsEnterprise

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 valuation
Python
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

Ready to Build?

Get started with Sovereign or Enterprise to unlock full API access.