2

I know there was an API for C#, but I don't think there is any longer? Is there any way I can search Google, then load each URL into a separate item in a listbox?

Alper
  • 1
  • 12
  • 39
  • 78

1 Answers1

3

You can use the custom search API from C#: http://code.google.com/apis/customsearch/v1/overview.html

Chris Shain
  • 50,833
  • 6
  • 93
  • 125
  • Be very careful with this. Note the restriction of "100 queries per day". That isn't exactly a lot. On that note, a couple years ago we had a sys admin that was testing a tool against google.com. An hour after he started the entire company was shut off from accessing google... I think he did a bit more than 100 queries. ;) – NotMe Jul 25 '11 at 01:12
  • 1
    100 queries a day for free- if you choose to pay for it, you can run any number, of course. $5 for 1000/day, up to 10000. – Chris Shain Jul 25 '11 at 01:18
  • This'll work for me, however I was hoping to be able to do more queries. Thanks anyways! – Alper Jul 25 '11 at 04:01