Agent Developers
Learn how to access content with Fastlane.
Agent developers can use Fastlane either via Toolhouse or directly.
Using Fastlane with Toolhouse
Fastlane is seamlessly integrated into Toolhouse. If you are building agents using Toolhouse Agent Studio, there is no integration step. This is the easiest way of using Fastlane.
Using Fastlane directly
You can also use Fastlane in a standalone way, using your Toolhouse API Key. Sign up for Toolhouse to get your API Key. You will find your API Key in the API Keys page.
You will call the Fastlane endpoint with URL to the page you want to access.
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;Behind the scenes, Toolhouse will contact the URL, get its content, and return it in an agentic-friendly way (usually Markdown or plaintext).
Last updated