So here is my issue:
I am currently working with Google’s Custom Search API which pulls the first 10 results of any given search query. For example, if I search “What is SDLC”, it will return the first 10 website’s metadata, and only those first 10 websites. It does not include Google’s response to the query which is what I was aiming for in the first place.
My goal is to take the definition given from Google (Generative AI)and use it programmatically but the issue is that it does not include Google’s definition in the API response. Below is the first index of the query I am talking about.
"kind": "customsearch#result",
"title": "What is SDLC? - Software Development Lifecycle Explained - AWS",
"htmlTitle": "<b>What is SDLC</b>? - Software Development Lifecycle Explained - AWS",
"link": "https://aws.amazon.com/what-is/sdlc/",
"displayLink": "aws.amazon.com",
"snippet": "The software development lifecycle (SDLC) methodology provides a systematic management framework with specific deliverables at every stage of the software ...",
"htmlSnippet": "The software development lifecycle (<b>SDLC</b>) methodology provides a systematic management framework with specific deliverables at every stage of the software ...",
"formattedUrl": "https://aws.amazon.com/what-is/sdlc/",
"htmlFormattedUrl": "https://aws.amazon.com/<b>what-is/sdlc</b>/",
I am not sure if there is another API I must access, but I’d assume it is accessible since I am only retrieving information already available to all users. Any suggestions would be appreciated, thank you.
I have tried searching for other parameters that may enable or broaden the type of search but I could not find anything for Generative AI. Here are the params available: https://developers.google.com/custom-search/v1/reference/rest/v1/cse/list
saladwaster is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
you could try accessing wikipedia’s api instead. Just be sure to donate to wikipedia the year you use it since it’s great that wikipedia has an api for everyone to use.
joeschmoe9 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1