Top Search Keywords API Documentation – SEO API - VebAPI

Top Search Keywords

Get top search keywords for a website.

Top Search Keywords

GET

Get top search keywords for a website.

GET /seo/topsearchkeywords

Parameters

website
Required query
string

the website url

X-API-KEY
Required header
string

your vebapi api key

Example Request


curl -X GET "https://vebapi.com/api/seo/topsearchkeywords?website=codeconia.com" \
    -H "X-API-KEY: YOUR_API_KEY" \
    -H "Content-Type: application/json"

Response

{
    "keywords": [
        {
            "countryCode": "us",
            "keyword": "instapy",
            "topRankedUrl": "https://codeconia.com/how-to-create-instagram-bot-with-instapy/",
            "rank": 19,
            "rankChange": 0,
            "searchVolume": 2000,
            "rankingDifficulty": 7,
            "seoClicks": 20,
            "seoClicksChange": 0,
            "totalMonthlyClicks": 1800,
            "broadCostPerClick": null,
            "phraseCostPerClick": null,
            "exactCostPerClick": null,
            "paidCompetitors": 0,
            "rankingHomepages": 2
        },
        {
            "countryCode": "us",
            "keyword": "youtube api tutorial javascript",
            "topRankedUrl": "https://codeconia.com/how-to-get-youtube-subscriber-views-and-video-counts-using-javascript/",
            "rank": 5,
            "rankChange": null,
            "searchVolume": 420,
            "rankingDifficulty": 22,
            "seoClicks": 14,
            "seoClicksChange": null,
            "totalMonthlyClicks": 420,
            "broadCostPerClick": null,
            "phraseCostPerClick": null,
            "exactCostPerClick": null,
            "paidCompetitors": 0,
            "rankingHomepages": 2
        },
        {
            "countryCode": "us",
            "keyword": "ultrasonic sensor arduino code",
            "topRankedUrl": "https://codeconia.com/ultrasonic-sensor-with-arduino-tutorial/",
            "rank": 25,
            "rankChange": 41,
            "searchVolume": 1100,
            "rankingDifficulty": 15,
            "seoClicks": 8,
            "seoClicksChange": 5,
            "totalMonthlyClicks": 950,
            "broadCostPerClick": null,
            "phraseCostPerClick": null,
            "exactCostPerClick": null,
            "paidCompetitors": 0,
            "rankingHomepages": 5
        }
    ]
}