Manage and use API keys for Artemis Search
Authorization
fetch('https://api.search-artemis.com/search', { method: 'POST', headers: { 'Authorization': `Bearer YOUR_API_KEY`, 'Content-Type': 'application/json' }, body: JSON.stringify({ projectId: 'YOUR_PROJECT_ID', searchQuery: 'companies that require HIPAA compliance', numberOfBatches: 50, topK: 5 }) }) .then(response => response.json())
Rate Limiting
429 Too Many Requests