-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbing_reverse_image.json
More file actions
117 lines (117 loc) · 5.9 KB
/
Copy pathbing_reverse_image.json
File metadata and controls
117 lines (117 loc) · 5.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"engine": "bing_reverse_image",
"params": {
"image_url": {
"required": true,
"description": "Parameter defines the URL for an image to perform the reverse image search. NOTE: The image's width and height must each be 4,000 pixels or less.",
"group": "search_query"
},
"mkt": {
"type": "select",
"options": [
"es-ar",
"en-au",
"de-at",
"nl-be",
"fr-be",
"pt-br",
"en-ca",
"fr-ca",
"es-cl",
"da-dk",
"fi-fi",
"fr-fr",
"de-de",
"zh-hk",
"en-in",
"en-id",
"it-it",
"ja-jp",
"ko-kr",
"en-my",
"es-mx",
"nl-nl",
"en-nz",
"no-no",
"zh-cn",
"pl-pl",
"en-ph",
"ru-ru",
"en-za",
"es-es",
"sv-se",
"fr-ch",
"de-ch",
"zh-tw",
"tr-tr",
"en-gb",
"en-us",
"es-us"
],
"description": "The market where the results come from (e.g. `en-US`). Typically, mkt is the country where the user is making the request from. However, it could be a different country if the user is not located in a country where Bing Reverse Image API delivers results. The market must be in the form -. For example, en-US. The string is case insensitive. For a list of possible market values, see Market Codes. NOTE: If known, you are encouraged to always specify the market. Specifying the market helps Bing route the request and return an appropriate and optimal response. If you specify a market that is not listed in Market Codes, Bing Reverse Image API uses a best fit market code based on an internal mapping that is subject to change.",
"group": "geographic_location"
},
"cat": {
"type": "number",
"description": "Parameter is used to crop the image and perform the reverse search on the cropped part of the image. For example, `0.3` means cropping 30% from the top. The minimum and maximum for this coordinate are `0` and `1`, respectively.",
"group": "crop_area"
},
"cal": {
"type": "number",
"description": "Parameter is used to crop the image and perform the reverse search on the cropped part of the image. For example, `0.3` means cropping 30% from the left. The minimum and maximum for this coordinate are `0` and `1`, respectively.",
"group": "crop_area"
},
"car": {
"type": "number",
"description": "Parameter is used to crop the image and perform the reverse search on the cropped part of the image. For example, `0.8` means cropping the right, 80% from the left. The minimum and maximum for this coordinate are `0` and `1`, respectively.",
"group": "crop_area"
},
"cab": {
"type": "number",
"description": "Parameter is used to crop the image and perform the reverse search on the cropped part of the image. For example, `0.8` means cropping the bottom, 80% from the top. The minimum and maximum for this coordinate are `0` and `1`, respectively.",
"group": "crop_area"
},
"next_page_token": {
"description": "Parameter defines the next page token. It is used for retrieving the next page results.",
"group": "pagination"
},
"count": {
"type": "number",
"description": "Parameter controls the number of results per page. This parameter defaults to `35`. This parameter is only a suggestion and might not reflect the returned results. The minimum and maximum for this parameter are `0` and `150`, respectively.",
"group": "pagination"
}
},
"common_params": {
"engine": {
"required": true,
"description": "Set parameter to `bing_reverse_image` to use the Bing Reverse Image API engine.",
"group": "serpapi_parameters"
},
"no_cache": {
"type": "checkbox",
"description": "Parameter will force SerpApi to fetch the Bing Reverse Image 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. no\\_cache and async parameters should not be used together.",
"group": "serpapi_parameters"
},
"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 to retrieve your results. async and no\\_cache parameters should not be used together. async should not be used on accounts with Ludicrous Speed enabled.",
"group": "serpapi_parameters"
},
"zero_trace": {
"description": "Enterprise only. Parameter enables ZeroTrace 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.",
"group": "serpapi_parameters"
},
"api_key": {
"required": true,
"description": "Parameter defines the SerpApi private key to use.",
"group": "serpapi_parameters"
},
"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.",
"group": "serpapi_parameters"
},
"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 for more details.",
"group": "serpapi_parameters"
}
}
}