🛣️
Fastlane
  • 🛣️Fastlane
  • Publishers
    • Basic setup
    • Agent Verification Endpoint
  • Agent Developers
  • Apply as a publisher
  • Get developer access
Powered by GitBook
On this page
  • Using Fastlane with Toolhouse
  • Using Fastlane directly

Agent Developers

Learn how to access content with Fastlane.

PreviousAgent Verification Endpoint

Last updated 22 days ago

Agent developers can use Fastlane either via or directly.

Using Fastlane with Toolhouse

Fastlane is seamlessly integrated into . 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. to get your API Key. You will find your API Key in the 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).

Toolhouse
Toolhouse
Sign up for Toolhouse
Sign up for Toolhouse
API Keys