POST
/
api
/
v2
/
google
/
search
curl --location --request POST 'https://piloterr.com/api/v2/google/search' \
--header 'Content-Type: application/json' \
--header 'x-api-key: <token>' \
--data-raw '{
    "query": "site:linkedin.com Bill Gates",
    "page": 1,
    "gl": "us",
    "hl": "en",
    "google_domains": "google.com"
}'
{
    "search_parameters": {
        "q": "site:linkedin.com Bill Gates",
        "google_domain": "google.com",
        "page": 1,
        "gl": "us",
        "hl": "en",
        "engine": "google"
    },
    "organic_results": [
        {
            "position": 1,
            "title": "Bill Gates",
            "link": "https://www.linkedin.com/in/williamhgates",
            "domain": "www.linkedin.com",
            "displayed_link": "https://www.linkedin.com › williamhgates",
            "snippet_matched": [
                "Bill",
                "Gates"
            ],
            "snippet": "Co-chair of the Bill & Melinda Gates Foundation. Founder of Breakthrough Energy. Co-founder of Microsoft. Voracious reader. Avid traveler. Active blogger.",
            "rich_snippet": {
                "top": {
                    "extensions": [
                        "Seattle, Washington, United States",
                        "Bill & Melinda Gates Foundation"
                    ]
                }
            }
        },
        {
            "position": 2,
            "title": "Bill Gates' Post",
            "link": "https://www.linkedin.com/posts/williamhgates_whether-youre-a-recent-grad-or-a-college-activity-6948310563722579970-6qrH",
            "domain": "www.linkedin.com",
            "displayed_link": "https://www.linkedin.com › posts › williamhgates_wheth...",
            "snippet_matched": [],
            "snippet": "Whether you're a recent grad or a college dropout, I'm sure your resume looks a lot better than mine did 48 years ago. | 4723 comments on LinkedIn."
        },
        {
            "position": 3,
            "title": "Bill Gates: The Visionary Founder Who Redefined Start-Ups",
            "link": "https://www.linkedin.com/pulse/bill-gates-visionary-founder-who-redefined-start-ups-brown-msis",
            "domain": "www.linkedin.com",
            "displayed_link": "https://www.linkedin.com › pulse › bill-gates-visionary-f...",
            "snippet_matched": [
                "Bill",
                "Gates"
            ],
            "snippet": "Sep 11, 2023 — Bill Gates is a name synonymous with innovation, entrepreneurship, and the relentless pursuit of technological advancements."
        },
        {
            "position": 4,
            "title": "The tale of Bill Gates, the strategic conqueror",
            "link": "https://www.linkedin.com/pulse/tale-bill-gates-strategic-conqueror-wale-goddey",
            "domain": "www.linkedin.com",
            "displayed_link": "https://www.linkedin.com › pulse › tale-bill-gates-strategi...",
            "snippet_matched": [
                "Bill",
                "Gates"
            ],
            "snippet": "May 15, 2023 — Once upon a time, in the realm of technological innovation, there was a young prodigy named Bill Gates. Armed with a brilliant mind and an ..."
        },
        {
            "position": 5,
            "title": "Gates Notes",
            "link": "https://www.linkedin.com/newsletters/gates-notes-6651495472181637121",
            "domain": "www.linkedin.com",
            "displayed_link": "https://www.linkedin.com › newsletters › gates-notes-665...",
            "snippet_matched": [
                "Bill",
                "Gates"
            ],
            "snippet": "Bill Gates | The blog of Bill Gates."
        },
        {
            "position": 6,
            "title": "Focusing My Time",
            "link": "https://www.linkedin.com/pulse/focusing-my-time-bill-gates",
            "domain": "www.linkedin.com",
            "displayed_link": "https://www.linkedin.com › focusing-my-time-bill-gates",
            "snippet_matched": [
                "Bill",
                "Gates"
            ],
            "snippet": "Mar 13, 2020 — Bill Gates. Co-chair, Bill & Melinda Gates Foundation. Published Mar ... I look forward to our continued partnership as co-trustees of the Bill & ..."
        }
    ]
}
x-api-key
string
required

This parameter specifies the private key you’ll need for Piloterr access.

Body

Search Query

query
string
required

Parameter defines the query you want to search. You can use anything that you would use in a regular Google search. e.g. inurl:, site:, intitle:.

Localization

google_domain
string

Parameter defines the Google domain to use. It defaults to google.com. Head to the Google domains page for a full list of supported Google domains.

gl
string

Parameter defines the country to use for the Google search. It’s a two-letter country code. (e.g., us for the United States, uk for United Kingdom, or fr for France). Head to the Google countries page for a full list of supported Google countries.

hl
string

Parameter defines the language to use for the Google search. It’s a two-letter language code. (e.g., en for English, es for Spanish, or fr for French). Head to the Google languages page for a full list of supported Google languages.

Pagination

page
integer

Parameter defines the result offset. It skips the given number of results. It’s used for pagination.

Response

Google Search
object