RESTful Design
Clean, predictable URLs with standard HTTP methods
Secure Authentication
OAuth 2.0 and API key authentication options
Global CDN
Low latency responses from edge locations worldwide
Webhooks
Real-time notifications for events and changes
Quick Start
JavaScript
// Example: Fetch upcoming flights
const response = await fetch('https://api.norvme.com/v1/flights', {
method: 'GET',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data.flights);
// Response
{
"flights": [
{
"id": "fl_123abc",
"departure": "LHR",
"arrival": "JFK",
"date": "2026-05-15",
"status": "confirmed"
}
],
"total": 24,
"page": 1
}API Endpoints
| Method | Endpoint |
|---|---|
| GET | /v1/flights |
| POST | /v1/flights |
| GET | /v1/events |
| POST | /v1/events |
| GET | /v1/team/members |
| GET | /v1/documents |
| POST | /v1/documents/upload |
| GET | /v1/analytics |