Create and manage API keys for programmatic access to Quinas intelligence
Manage and monitor your API access
Main production application API key
Created
Expires
Last Used
2024-01-20Permissions
3 grantedPermissions
API Key Expired
This API key has expired and can no longer be used.
Development and testing environment
Created
Expires
Last Used
2024-01-19Permissions
2 grantedPermissions
API Key Expired
This API key has expired and can no longer be used.
Dashboard data visualization
Created
Expires
Last Used
2024-01-18Permissions
3 grantedPermissions
Search for IP addresses, domains, and network data
Get network intelligence analytics overview
Get detailed ASN information
curl -X GET "https://api.quinas.cloud/api/search?q=example.com" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"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())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);Active Keys
2/3
API Calls Today
1,247
Avg Response Time
45ms
Success Rate
99.8%
Resets in 2 minutes
Resets in 16 hours
Search query executed
2 minutes ago
Analytics data retrieved
5 minutes ago
Rate limit warning
1 hour ago
Keep your API keys secure and never share them publicly. Rotate keys regularly and revoke access immediately if compromised.