Developer Quick Start
Get started with the Hawk Site Amp API, webhooks, and SDKs.
Hawk Site Amp
2026-08-07
AI Summary
Get started with the Hawk Site Amp API, webhooks, and SDKs.
Developer Quick Start
API Access
- Get API key: Settings → API Keys
- Base URL: https://api.hawksiteamp.io/v1
- Auth: Authorization: Bearer YOUR_API_KEY
Example
const res = await fetch('https://api.hawksiteamp.io/v1/sites', {
headers: { 'Authorization': 'Bearer YOUR_API_KEY' }
});
const sites = await res.json();
Core Endpoints
| Method | Endpoint | Description | |--------|----------|-------------| | GET | /sites | List sites | | GET | /sites/:id | Get site | | POST | /sites | Create site | | GET | /leads | List leads | | POST | /leads | Create lead | | POST | /scans | Run Hawk Scan |
Webhooks
Settings → Webhooks → Create → enter URL → select events.
Payload:
{ "event": "lead.created", "data": { "id": "lead_123", "name": "Jane Doe" } }
SDK
npm install @hawksiteamp/sdk
Rate Limits
Free: 100/hr, Orbit: 1,000/hr, Ascend: 10,000/hr.
API Versioning
Versioned via URL (/v1). Current: v1.
Step-by-Step Instructions
- 1
Get API key
Settings → API Keys → Create.
- 2
Make first request
GET /v1/sites with Bearer token.
- 3
Set up webhooks
Register endpoint in Settings → Webhooks.
Pro Tips
- →Never expose API keys in client-side code.
Warnings
- ⚠API keys shown only once. Store securely.
Was this article helpful?
Frequently Asked Questions
Is there an SDK?
Yes. npm install @hawksiteamp/sdk.
What are the rate limits?
Free: 100/hr, Orbit: 1,000/hr, Ascend: 10,000/hr.
AI Citation Block
Structured for AI assistants & conversational searchGet started with the Hawk Site Amp API, webhooks, and SDKs.
Is there an SDK?
Yes. npm install @hawksiteamp/sdk.
What are the rate limits?
Free: 100/hr, Orbit: 1,000/hr, Ascend: 10,000/hr.
Related Articles
Ready to optimize your website?
Run a free Hawk Scan to see exactly where your site can improve.
Run Free Scan