API KEYS MANAGEMENT

Create and manage API keys for programmatic access to Quinas intelligence

Create New API Key

0/500 characters

Perform IP and network searches

Access analytics and statistics

Access ASN and network information

Access search history and logs

Create and manage saved searches

Your API Keys

Manage and monitor your API access

Production App

Expired

Main production application API key

Created

2024-01-15

Expires

2025-01-15 (Expired)

Last Used

2024-01-20

Permissions

3 granted

Permissions

SearchAnalyticsASN Data

API Key Expired

This API key has expired and can no longer be used.

Development

Expired

Development and testing environment

Created

2024-01-10

Expires

2024-07-10 (Expired)

Last Used

2024-01-19

Permissions

2 granted

Permissions

SearchHistory

API Key Expired

This API key has expired and can no longer be used.

Analytics Dashboard

Revoked

Dashboard data visualization

Created

2023-12-01

Expires

2024-12-01 (Expired)

Last Used

2024-01-18

Permissions

3 granted

Permissions

AnalyticsASN DataSaved Searches

API Quick Reference

Authentication

Authorization Header
Authorization: Bearer YOUR_API_KEY

Popular Endpoints

GET/api/search

Search for IP addresses, domains, and network data

Parameters: q (query), size (results), field (search field)
GET/api/analytics/overview

Get network intelligence analytics overview

Returns: search stats, trends, geographic data
GET/api/asn/208757

Get detailed ASN information

Parameters: asn (ASN number)

Code Examples

cURL
curl -X GET "https://api.quinas.cloud/api/search?q=example.com" \

  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
Python
import requests

headers = {
    "Authorization": "Bearer YOUR_API_KEY",
    "Content-Type": "application/json"
}

response = requests.get(
    "https://api.quinas.cloud/api/search",
    headers=headers,
    params={"q": "example.com"}
)

print(response.json())
JavaScript
const response = await fetch(
  'https://api.quinas.cloud/api/search?q=example.com',
  {
    method: 'GET',
    headers: {
      'Authorization': 'Bearer YOUR_API_KEY',
      'Content-Type': 'application/json'
    }
  }
);

const data = await response.json();
logger.debug(data);

SDKs & Libraries

PY
Python SDK

Official Python client library

View on GitHub
JS
JavaScript SDK

Official JavaScript/TypeScript client

View on GitHub

API Usage Statistics

Active Keys

2/3

+0%

API Calls Today

1,247

+12%

Avg Response Time

45ms

-8%

Success Rate

99.8%

+0.2%

Rate Limits

Requests per minute1,000 / 1,000

Resets in 2 minutes

Requests per day8,500 / 10,000

Resets in 16 hours

Recent Activity

Search query executed

2 minutes ago

200 OK

Analytics data retrieved

5 minutes ago

200 OK

Rate limit warning

1 hour ago

429

Security Reminder

Keep your API keys secure and never share them publicly. Rotate keys regularly and revoke access immediately if compromised.