Agent Developers
Learn how to access content with Fastlane.
Using Fastlane with Toolhouse
Using Fastlane directly
curl "https://api.toolhouse.ai/v1/fastlane?url=https://example.com/content-i-want-to-get \" \
-H 'Authorization: Bearer (your API key)'import requests
url = "https://api.toolhouse.ai/v1/fastlane"
params = {"url": "https://example.com/content-i-want-to-get"}
headers = {"Authorization": "Bearer YOUR_API_KEY"}
response = requests.get(url, params=params, headers=headers)const apiKey = 'your API key';
const url = 'https://example.com/content-i-want-to-get';
const response = await fetch(`https://api.toolhouse.ai/v1/fastlane?url=${url}`, {
headers: {
'Authorization': `Bearer ${apiKey}`
}
});
const data = await response.json();
return data;Last updated