サイト検索

サイト検索

サイト検索。 コンテンツ・ドメイン・各種指標で関連サイトを検索し、推定流入数が多い順に取得する。

最大100件取得。各サイトの推定検索流入数・集客価値(USD)・ランクインキーワード数・ページ数を返す。

コンテンツフィルタ(filter.keyword)を使った場合、まず関連サイトを検索流入が多い順に最大100件抽出した後に他のフィルタが適用される。 そのため、フィルタを掛け合わせて101〜200件目を取得することはできない(フィルタは抽出済み100件に対して掛かるため)。 コンテンツフィルタ指定時は、関連コンテンツの推定流入数(relatedContent.estimatedTraffic)とコンテンツ関連性スコア(relatedContent.relevanceScore)も返す。

特定サイトがSEO流入を獲得しているキーワードを調べたい場合は POST /v1/influx-keywords を、 指定ドメインの競合サイトを抽出したい場合は POST /v1/competitive を使う。

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

post/v1/site-search

Request body

limitinteger

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

Example request

{
  "filter": {
    "keyword": {
      "includes": [
        "水族館"
      ],
      "notIncludes": [
        "グッズ"
      ]
    },
    "domain": {
      "includes": [
        "example.com"
      ],
      "notIncludes": [
        "example.net"
      ]
    },
    "totalEtv": {
      "min": 100,
      "max": 10000
    },
    "keywordCount": {
      "min": 100,
      "max": 10000
    },
    "pageCount": {
      "min": 100,
      "max": 10000
    },
    "totalTrafficValue": {
      "min": 100,
      "max": 10000
    },
    "relatedContentEtv": {
      "min": 100,
      "max": 10000
    },
    "contentRelevance": {
      "min": 1,
      "max": 100
    }
  },
  "limit": 100
}

Response

検索成功

resultboolean required

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

errorsstring[] required

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

Example response

{
  "result": true,
  "meta": {
    "consumedCredit": 1.5
  },
  "data": {
    "query": {
      "filter": {
        "keyword": {
          "includes": [
            "水族館"
          ],
          "notIncludes": [
            "グッズ"
          ]
        },
        "domain": {
          "includes": [
            "example.com"
          ],
          "notIncludes": [
            "example.net"
          ]
        },
        "totalEtv": {
          "min": 100,
          "max": 10000
        },
        "keywordCount": {
          "min": 100,
          "max": 10000
        },
        "pageCount": {
          "min": 100,
          "max": 10000
        },
        "totalTrafficValue": {
          "min": 100,
          "max": 10000
        },
        "relatedContentEtv": {
          "min": 100,
          "max": 10000
        },
        "contentRelevance": {
          "min": 1,
          "max": 100
        }
      }
    },
    "summary": {
      "totalCount": 150,
      "returnedCount": 100
    },
    "items": [
      {
        "no": 1,
        "site": {
          "domain": "rakkokeyword.com",
          "url": "https://rakkokeyword.com/",
          "title": "ラッコキーワード",
          "description": "多機能でサクサク使えるキーワードリサーチツール。"
        },
        "metrics": {
          "estimatedTraffic": 140000,
          "trafficValue": 22660,
          "rankingKeywordCount": 1800,
          "pageCount": 320
        },
        "relatedContent": {
          "estimatedTraffic": 12000,
          "relevanceScore": 42
        }
      }
    ]
  },
  "errors": []
}

Changes

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