angelokh
angelokh

Reputation: 9428

Bing search api limit to certain sites

Can I define Bing search api only return result from subdomains from a site? For example, www.domain.com/dir/. This is something similar to what Google custom search does. But Google CSE has a hard limit on 10k/day. Is there an alternative search api available for this purpose?

Upvotes: 3

Views: 2461

Answers (2)

TxRegex
TxRegex

Reputation: 2425

madmuffin is correct, but I'm expanding on his answer to show how multiple sites can be searched. You can use the advanced search operator "site:" as part of your query "q" param.

Single Site Example

"heart disease" site:www.example.com

Multiple Site Example

"heart disease" (site:www.example1.com OR site:www.example2.com)

Upvotes: 3

madmuffin
madmuffin

Reputation: 993

You can simply put this into the query field, like this:

site:domain.com/dir/ whatIAmLookingFor

The query field can contain anything the Bing Engine supports, despite the keyword being site, it apparently supports also URLs

You can read the Bing Search API docs here.

Upvotes: 2

Related Questions