獲得キーワード調査

獲得ページ調査取得

獲得ページ調査。

指定ドメイン/URLがGoogleからSEO集客できているページを取得。 競合や自サイトの主力集客ページの把握に有用。

最大10,000件取得。 指定ドメインの各ページの合計推定流入数・合計集客価値(USD)・ランクインキーワード数・最もSEO流入を集めているキーワードを返す。

検索順位やSEO指標は最新でない可能性がある。 この指標を重要視する用途なら、データ取得後にPOST /v1/search-volumeで最新のSEO指標を取得するか、POST /v1/search-rankで最新の検索順位+SEO指標を取得すること。

競合がすでにSEOで集客できているページは、Google検索のユーザーから需要がある情報が掲載されていることが推定できる。

当機能で発見したページの、2位以降のSEO流入キーワードを確認したい場合はPOST /v1/influx-keywordsをmatchType=urlで使う。

1リクエストあたり4.5クレジットを消費。

post/v1/influx-pages

Request body

topKeywordCollapseboolean

トップキーワード重複除去の有効/無効。true にすると同一トップキーワードの重複を除去する。省略時は false。

sortBy'totalEtv' | 'totalTrafficValue' | 'keywordCount'

ソート項目。totalEtv / totalTrafficValue / keywordCount。省略時は totalEtv。

orderBy'asc' | 'desc'

ソート順。asc: 昇順 / desc: 降順。省略時は desc。

limitinteger

取得件数。1〜10000 の整数を指定する。省略時は 100。

Example request

{
  "targets": [
    {
      "url": "https://rakkokeyword.com/",
      "matchType": "sub_domain"
    }
  ],
  "filter": {
    "totalEtv": {
      "min": 100,
      "max": 10000
    },
    "keywordCount": {
      "min": 100,
      "max": 10000
    },
    "totalTrafficValue": {
      "min": 100,
      "max": 10000
    },
    "title": {
      "includes": [
        "水族館"
      ],
      "notIncludes": [
        "グッズ"
      ]
    },
    "url": {
      "includes": [
        "https://rakkokeyword.com/"
      ],
      "notIncludes": [
        "https://rakkokeyword.com/result/"
      ]
    },
    "topKeyword": {
      "includes": [
        "水族館"
      ],
      "notIncludes": [
        "グッズ"
      ]
    },
    "topSeoDifficulty": {
      "min": 1,
      "max": 100
    }
  },
  "limit": 100
}

Response

検索成功

resultboolean required

API 呼び出しの成否。正常時は true、エラー時は false。

errorsstring[] required

エラーメッセージの配列。正常時は空配列。

Example response

{
  "result": true,
  "meta": {
    "consumedCredit": 4.5
  },
  "data": {
    "query": {
      "targets": [
        "https://example.com/"
      ]
    },
    "summary": {
      "totalCount": 319,
      "returnedCount": 100,
      "estimatedTraffic": 2824,
      "keywordCount": 983
    },
    "items": [
      {
        "target": "https://example.com/",
        "page": {
          "title": "ラッコキーワード|キーワード分析ツール",
          "url": "https://rakkokeyword.com/"
        },
        "performance": {
          "rankingKeywordCount": 2173,
          "estimatedTraffic": 10000,
          "trafficValue": 5000
        },
        "topKeyword": {
          "keyword": "ラッコ",
          "position": 1,
          "metrics": {
            "seoDifficulty": 30,
            "searchVolume": 10000
          }
        }
      }
    ]
  },
  "errors": []
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.