Getting Started
Get your first SEO Boost Hub API request running in minutes.
Prerequisites
- An active SEO Boost Hub account with API access enabled
- An API key generated from Settings → API Keys in your dashboard
Base URL
All API requests are made to the following base URL:
https://api.seoboosthub.com/v1
Your First API Call
Let's retrieve your list of locations. This is the simplest endpoint to verify your setup:
Request
curl -X GET https://api.seoboosthub.com/v1/locations \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Accept: application/json"
Response
200 OK
{
"data": [
{
"id": "loc_01hx7a9b2c",
"name": "Downtown Coffee Shop",
"address": "123 Main St, Berlin",
"city": "Berlin",
"country": "DE",
"rank_score": 72,
"status": "active",
"created_at": "2025-01-15T10:30:00Z"
},
{
"id": "loc_01hx7a9b3d",
"name": "Airport Lounge",
"address": "456 Airport Rd, Munich",
"city": "Munich",
"country": "DE",
"rank_score": 58,
"status": "active",
"created_at": "2025-02-20T14:15:00Z"
}
],
"meta": {
"current_page": 1,
"per_page": 15,
"total": 2
}
}