> ## Documentation Index
> Fetch the complete documentation index at: https://agno-v2-codex-docs-audit-20260719-0149.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Oxylabs Tools

> Search Google through Oxylabs and summarize the top results with OxylabsTools.

Web scraping toolkit for Google search, Amazon products, and website scraping.

```python oxylabs_tools.py theme={null}
"""
Oxylabs Tools
=============================

Web scraping toolkit for Google search, Amazon products, and website scraping.

Requirements:
    pip install oxylabs

Environment variables:
    OXYLABS_USERNAME: Your Oxylabs username
    OXYLABS_PASSWORD: Your Oxylabs password
"""

from agno.agent import Agent
from agno.tools.oxylabs import OxylabsTools

# ---------------------------------------------------------------------------
# Create Agent
# ---------------------------------------------------------------------------

agent = Agent(
    tools=[OxylabsTools()],
    markdown=True,
)

# ---------------------------------------------------------------------------
# Run Agent
# ---------------------------------------------------------------------------
if __name__ == "__main__":
    # Example 1: Google Search
    agent.print_response(
        "Search for 'latest iPhone reviews' and summarize the top 3 results.",
    )

    # Example 2: Amazon Product Search
    # agent.print_response(
    #     "Get details for Amazon product with ASIN 'B07FZ8S74R' (Echo Dot).",
    # )

    # Example 3: Multi-Domain Amazon Search
    # agent.print_response(
    #     "Use search_amazon_products to search for 'gaming keyboards' on both:\n"
    #     "1. Amazon US (domain='com')\n"
    #     "2. Amazon UK (domain='co.uk')\n"
    #     "Compare the top 3 results from each region including pricing and availability."
    # )

    # Example 4: Website Scraping with Markdown Output
    # Use markdown=True on OxylabsTools to get full Markdown content instead of parsed HTML
    # agent_markdown = Agent(
    #     tools=[OxylabsTools(markdown=True)],
    #     markdown=True,
    # )
    # agent_markdown.print_response(
    #     "Scrape the content from https://example.com and summarize it.",
    # )
```

## Run the Example

<Steps>
  <Snippet file="create-venv-step.mdx" />

  <Step title="Install dependencies">
    ```bash theme={null}
    uv pip install -U agno openai oxylabs
    ```
  </Step>

  <Step title="Export environment variables">
    <CodeGroup>
      ```bash Mac/Linux theme={null}
      export OPENAI_API_KEY="your_openai_api_key_here"
      export OXYLABS_PASSWORD="your_oxylabs_password_here"
      export OXYLABS_USERNAME="your_oxylabs_username_here"
      ```

      ```bash Windows theme={null}
      $Env:OPENAI_API_KEY="your_openai_api_key_here"
      $Env:OXYLABS_PASSWORD="your_oxylabs_password_here"
      $Env:OXYLABS_USERNAME="your_oxylabs_username_here"
      ```
    </CodeGroup>
  </Step>

  <Step title="Run the example">
    Save the code above as `oxylabs_tools.py`, then run:

    ```bash theme={null}
    python oxylabs_tools.py
    ```
  </Step>
</Steps>

Full source: [cookbook/91\_tools/oxylabs\_tools.py](https://github.com/agno-agi/agno/blob/v2.7.4/cookbook/91_tools/oxylabs_tools.py)
