Asalebeta
ツール市場
検索

Google Lens API

Google Lens API

呼び出しテスト
料金
0.025000 USDT / リクエスト
状態
利用可能
公式参考価格
0.025000 USDT / リクエスト
呼び出し方法
REST · MCP

呼び出しテスト

実行をクリックすると送信されます。入力内容と費用上限を先に確認してください。

入力パラメーターJSON
ログイン

テストにはアカウント残高を使用し、選択したキーの予算が適用されます。費用上限は今回の API 呼び出しのみを対象とし、後続の呼び出しや上流の定期タスクは含みません。

実行結果

テストを実行すると、状態、費用、応答をここで確認できます。

API リファレンス

非同期の作成処理が成功すると受付 ID が返されます。その ID をプロバイダーの状態・結果 API に渡し、タスクの完了を確認してください。

curl https://gw.asale.ai/v1/tool-runs \
  -H 'Authorization: Bearer <ASALE_API_KEY>' \
  -H 'Content-Type: application/json' \
  -H 'Idempotency-Key: <UNIQUE_REQUEST_ID>' \
  -d '{
  "tool": "search.google.lens",
  "input": {
    "query": {
      "type": "",
      "url": "https://example.com"
    }
  },
  "max_cost_micros": 25000
}'
curl https://gw.asale.ai/v1/tool-runs/<RUN_ID> -H 'Authorization: Bearer <ASALE_API_KEY>'
パラメーター必須
queryはいobject
入力スキーマ全体
{
  "additionalProperties": false,
  "properties": {
    "query": {
      "additionalProperties": false,
      "properties": {
        "async": {
          "description": "Parameter defines the way you want to submit your search to SerpApi. It can be set to `false` (default) to open an HTTP connection and keep it open until you got your search results, or `true` to just submit your search to SerpApi and retrieve them later. In this case, you'll need to use our [Searches Archive API](https://Asale.com/search-archive-api) to retrieve your results. `async` and `no_ca",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "auto_crop": {
          "description": "Parameter defines whether Google auto-crops the image to focus on the detected area of interest. It can be set to `true` or `false` (default). Auto Crop does not work with `type` set to `about_this_image`",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "country": {
          "description": "Parameter defines the specific country location to use for the Google Lens search. It's a two-letter country code. (e.g., `us` for United States, `fr` for France, or `de` for Germany). Head to the [Google Lens countries page](https://Asale.com/google-lens-countries) for a full list of supported Google Lens countries.",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "hl": {
          "description": "Parameter defines the language to use for the Google Lens search. It's a two or three-letter language code. (e.g., `en` for English, `es` for Spanish, or `fr` for French), optionally followed by a two-letter or three-digit region code (e.g., `en-gb` for British English, or `es-419` for Latin American Spanish). Head to the [Google languages page](https://Asale.com/google-languages) for a full lis",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "image_id": {
          "description": "Parameter defines the Image ID you want to use for the search. The Image ID can be obtained using the [Image API](https://Asale.com/image-api). When using the `image_id` parameter, the `url` parameter can be omitted. Visit the [documentation](https://Asale.com/google-lens-upload-an-image) for the step-by-step guide.",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "json_restrictor": {
          "description": "Parameter defines the fields you want to include in the output, reducing payload size for faster response. See the [JSON Restrictor documentation](https://Asale.com/json-restrictor) for more details.",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "no_cache": {
          "description": "Parameter will force SerpApi to fetch the Google Lens results even if a cached version is already present. A cache is served only if the query and all parameters are exactly the same. Cache expires after 1h. Cached searches are free, and are not counted towards your searches per month. It can be set to `false` (default) to allow results from the cache, or `true` to disallow results from the cache.",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "output": {
          "description": "Parameter defines the format of the result. It can be set to `json` (default) to get a structured JSON of the results, `html` to get the raw HTML retrieved, or `md` to get a markdown-formatted version optimized for LLMs and AI agents.",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "q": {
          "description": "Parameter defines the search query to use along in the Google Lens search. It is only applicable when `type` is set to `all`, `visual_matches`, or `products`.",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "safe": {
          "description": "Parameter defines the level of filtering for adult content. It can be set to `active` or `off`, by default Google will blur explicit content.",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "type": {
          "description": "Parameter defines the type of search to perform. By default, the search type is `all`. Available options: `all` - All `about_this_image` - About This Image `products` - Products `exact_matches` - Asalect Matches `visual_matches` - Visual Matches.",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "url": {
          "description": "Parameter defines the URL of an image to perform the Google Lens search. Alternatively, you can use [`image_id` parameter](https://Asale.com/google-lens-api#api-parameters-upload-image-parameters-image-id) if you prefer to perform a search by uploading an image.",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        },
        "zero_trace": {
          "description": "Enterprise only. Parameter enables [ZeroTrace mode](https://Asale.com/zero-trace-mode). It can be set to `false` (default) or `true`. Enable this mode to skip storing search parameters, search files, and search metadata on our servers. This may make debugging more difficult.",
          "type": [
            "string",
            "number",
            "boolean"
          ]
        }
      },
      "required": [
        "url",
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "query"
  ],
  "type": "object"
}

料金

0.025000 USDT / リクエスト

テストにはアカウント残高を使用し、選択したキーの予算が適用されます。費用上限は今回の API 呼び出しのみを対象とし、後続の呼び出しや上流の定期タスクは含みません。

料金バージョン 4

検索

Asale は同じ機能の利用可能なチャネルを価格順に選択します。参考価格は確認済みのチャネル参考価格の最高値です。未実行が確実な拒否のみ別チャネルへ切り替え、結果が不明な場合は二重請求を防ぐため照合を行います。

供給チャネル: 1