> ## Documentation Index
> Fetch the complete documentation index at: https://docs-v1.agno.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Oxylabs Tools

> Use Oxylabs with Agno to scrape and crawl the web.

## Code

```python cookbook/tools/oxylabs_tools.py theme={null}
from agno.agent import Agent
from agno.tools.oxylabs import OxylabsTools

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

agent.print_response("""
Let's search for 'latest iPhone reviews' and provide a summary of the top 3 results. 
""")

print(response)
```

## Usage

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

  <Step title="Set your API keys">
    ```bash theme={null}
    export OXYLABS_USERNAME=your_oxylabs_username
    export OXYLABS_PASSWORD=your_oxylabs_password
    ```
  </Step>

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

  <Step title="Run the example">
    ```bash theme={null}
    python cookbook/tools/oxylabs_tools.py
    ```
  </Step>
</Steps>
