Prerequisites
Examples
iPhone Reviews
Amazon Product Search
Toolkit Params
Toolkit Functions
Developer Resources
- View Tools
- View Cookbook
- View Oxylabs MCP Cookbook
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
You are viewing v1 docs. For the latest documentation, visit docs.agno.com
pip install -U oxylabs-sdk
export OXYLABS_USERNAME=your_oxylabs_username
export OXYLABS_PASSWORD=your_oxylabs_password
from agno.agent import Agent
from agno.tools.oxylabs import OxylabsTools
agent = Agent(
tools=[OxylabsTools()],
markdown=True,
show_tool_calls=True,
)
agent.print_response("""
Search for 'latest iPhone reviews' and provide a summary of the top 3 results.
""")
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 an Amazon product with ASIN code 'B07FZ8S74R' ",
)
| Parameter | Type | Default | Description |
|---|---|---|---|
username | str | None | Oxylabs dashboard username. If not provided, it defaults to OXYLABS_USERNAME env var. |
password | str | None | Oxylabs dashboard password. If not provided, it defaults to OXYLABS_PASSWORD env var. |
| Function | Description |
|---|---|
search_google | Performs a Google SERP search. Accepts all the standard Oxylabs params (e.g. query, geo_location). |
get_amazon_product | Retrieves the details of Amazon product(s). Accepts ASIN code or full product URL. |
search_amazon_products | Searches for Amazon product(s) using a search term. |
scrape_website | Scrapes a webpage URL. |
Was this page helpful?