獲得キーワード調査
獲得キーワード調査取得
獲得キーワード調査。 指定ドメイン/URLがGoogleからSEO流入を獲得しているキーワードを取得。競合のSEO調査・自サイト分析に使う。
最大10,000件取得。 対象サイト・ページが各キーワードで何位にランクインし、どれだけ推定流入数を得ているかを返す。
検索順位やSEO指標は最新でない可能性がある。 この指標を重要視する用途なら、データ取得後にPOST /v1/search-volumeで最新のSEO指標を取得するか、POST /v1/search-rankで最新の検索順位を取得すること。
競合がSEO流入を獲得している主要なキーワードを調査するのに有用。 また、コンテンツギャップの調査にも役立つ。 自サイト・競合サイトのデータを比較することで、 競合がランクインしているが、自サイトがランクインできていないキーワードを把握できる。
ページ単位で集計したい場合は POST /v1/influx-pages を、 指定ドメインの競合サイトを抽出したい場合はPOST /v1/competitiveを使う。
1リクエストあたり4.5クレジットを消費。
post/v1/influx-keywords
Request body
Example request
{
"targets": [
{
"url": "https://rakkokeyword.com/",
"matchType": "sub_domain"
}
],
"filter": {
"keyword": {
"includes": [
"水族館"
],
"notIncludes": [
"グッズ"
]
},
"seoDifficulty": {
"min": 1,
"max": 100
},
"rank": {
"min": 1,
"max": 100
},
"searchVolume": {
"min": 100,
"max": 10000
},
"cpc": {
"min": 0.5,
"max": 10
},
"competition": {
"min": 1,
"max": 100
},
"etv": {
"min": 100,
"max": 10000
}
},
"limit": 100
}Response
検索成功
Example response
{
"result": true,
"meta": {
"consumedCredit": 4.5
},
"data": {
"query": {
"targets": [
"https://example.com/"
]
},
"summary": {
"totalCount": 983,
"returnedCount": 100,
"estimatedTraffic": 2824,
"keywordCount": 983
},
"items": [
{
"target": "https://example.com/",
"keyword": "ラッコ",
"metrics": {
"seoDifficulty": 30,
"searchVolume": 10000
},
"ranking": {
"position": 1,
"estimatedTraffic": 438,
"url": "https://example.com/page"
}
}
]
},
"errors": []
}Changes
No recorded changes to this endpoint across all 1 revision of this API.