developer documentationDeveloper Docs2 min read

Developer Quick Start

Get started with the Hawk Site Amp API, webhooks, and SDKs.

H

Hawk Site Amp

2026-08-07

AI Summary

Get started with the Hawk Site Amp API, webhooks, and SDKs.

Developer Quick Start

API Access

  1. Get API key: Settings → API Keys
  2. Base URL: https://api.hawksiteamp.io/v1
  3. 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. 1

    Get API key

    Settings → API Keys → Create.

  2. 2

    Make first request

    GET /v1/sites with Bearer token.

  3. 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.
developerapisdkwebhooks

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 search
Updated 5 days agoReviewed by Hawk Site Amp2 min read2 references0 citations
Quick Summary

Get started with the Hawk Site Amp API, webhooks, and SDKs.

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.

Related Statistics
AI Readiness Index 2026
Related Research
AI Readiness Index 2026
Author: Hawk Site AmpReview date: 8/7/2026Last updated: 8/24/2026

Ready to optimize your website?

Run a free Hawk Scan to see exactly where your site can improve.

Run Free Scan
base44
Edit with Base44