API-Referenz

Verwenden Sie die SEO Boost Hub-Endpunkte, um Standorte, Keywords, Inhalte und Einblick-Daten mit vorhersehbaren REST-Mustern zu verwalten.

Basis-URL https://seoboosthub.com/api/v1

Standorte

GET /api/v1/locations
GET /api/v1/locations/{id}
POST /api/v1/locations
PATCH /api/v1/locations/{id}

Keywords

GET /api/v1/locations/{id}/keywords
POST /api/v1/locations/{id}/keywords
DELETE /api/v1/keywords/{id}

Ranking-Scans

GET /api/v1/keywords/{id}/scans

Inhaltsbeiträge

GET /api/v1/locations/{id}/posts
POST /api/v1/locations/{id}/posts

Einblicke

GET /api/v1/locations/{id}/insights

Beispiel

Nachfolgend finden Sie eine Beispielanfrage und -antwort zum Auflisten von Standorten.

Beispielanfrage
curl -X GET https://seoboosthub.com/api/api/v1/locations \
  -H "Authorization: Bearer sbh_live_abc123def456ghi789" \
  -H "Accept: application/json"
Beispielantwort 200 OK
{
  "data": [
    {
      "id": "loc_01hx7a9b2c",
      "name": "Downtown Coffee Shop",
      "address": "123 Main St, Berlin",
      "city": "Berlin",
      "country": "DE",
      "rank_score": 72,
      "status": "active",
      "keywords_count": 12,
      "last_scan_at": "2025-11-28T08:00:00Z",
      "created_at": "2025-01-15T10:30:00Z"
    }
  ],
  "meta": {
    "current_page": 1,
    "per_page": 15,
    "total": 1
  }
}