AI-Map
Learn how to map and explore domains intelligently to find relevant URLs.
Overview
How to use
Installation
pip install oxylabs-ai-studioCode example (Python)
from oxylabs_ai_studio.apps.ai_map import AiMap
import json
# Initialize authorization
ai_map = AiMap(api_key="<API_KEY>")
# Define the payload for request
payload = {
"url": "https://career.oxylabs.io",
"user_prompt": "job ad pages",
"return_sources_limit": 10,
"geo_location": None,
"render_javascript": False,
}
# Start the mapping
result = ai_map.map(**payload)
# Output the results in JSON
print("URLs:")
print(json.dumps(result.data, indent=2))Request parameters
Parameter
Description
Default Value
Output sample
Practical use cases
Last updated
Was this helpful?

