Reputation: 5774
Using google search engine api to extract data from google. what is the parameter I should use to find the exact search_term
https://www.googleapis.com/customsearch/v1?key="YOUR_KEY"&cx="ENGINE_API"&q="search_term&alt=json
Upvotes: 0
Views: 1106
Reputation: 2176
You may want to try exactTerms
.
exactTerms
(string) - Identifies a phrase that all documents in the search results must contain.
Request > Parameters > exactTerms
https://developers.google.com/custom-search/json-api/v1/reference/cse/list#exactTerms
Upvotes: 1