Web Search · skillboss

Google Posts Scraper API

Crawl business posts published on Google Maps. Ideal for social media monitoring and merchant marketing content tracking.

Quickstart

Get an API key at skillboss.co/console, then send your first request:

cURL
curl https://api.skillboss.co/v1/run \
  -H "Authorization: Bearer $SKILLBOSS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "google-posts-scraper",
    "inputs": { /* model-specific input fields */ }
  }'

Pricing

Vendor List Price
See your console for billing details.
Prices shown are the vendor's published list price. SkillBoss does not mark up token costs — see pricing for billing details.

Code examples

Python
import requests
resp = requests.post(
    "https://api.skillboss.co/v1/run",
    headers={"Authorization": "Bearer $SKILLBOSS_API_KEY"},
    json={"model": "google-posts-scraper", "inputs": { }},
)
print(resp.json())
JavaScript / TypeScript
const res = await fetch("https://api.skillboss.co/v1/run", {
  method: "POST",
  headers: {
    Authorization: `Bearer ${process.env.SKILLBOSS_API_KEY}`,
    "Content-Type": "application/json",
  },
  body: JSON.stringify({ model: "google-posts-scraper", inputs: {} }),
});

Endpoint

MethodPOST
URLhttps://api.skillboss.co/v1/run
AuthAuthorization: Bearer $SKILLBOSS_API_KEY
Content-Typeapplication/json

Related