FetchFox - AI Web Scraper
  • 🦊Welcome to FetchFox
  • Getting Started
    • ⚡Quickstart (Pokémon Edition)
  • Key Concepts
    • ⛓️Scraping Setups
      • Single Page / Single Item
      • Single Page / Multiple Items
      • Multiple Pages / Single Item per Page
      • Multiple Pages / Multiple Items
    • Crawl for URL patterns
    • 📡Deep Scrapes
    • 💵Pricing
  • Integrations
    • Google Sheets
    • Webhooks
    • Make.com
  • n8n
  • Developers
    • HTTP API
      • API Reference
Powered by GitBook
On this page
  • Base URL
  • Authentication
  • Making Your First API Call
  1. Developers

HTTP API

Use our REST API

Welcome to the FetchFox REST API! This guide will help you get up and running quickly by covering authentication, basic request structure, and making your first API call.

Base URL

Authentication

To access the API, you need an API key. You can obtain your API key from your FetchFox account dashboard.

https://fetchfox.ai/api/v2

Include your API key in the Authorization header of every request:

curl "https://fetchfox.ai/v2/example-endpoint" \
     -H "Authorization: Bearer YOUR_API_KEY"

Making Your First API Call

Let's test your setup by making a simple request to fetch account details.

Request:

curl "https://fetchfox.ai/api/v2/user/me" \
     -H "Authorization: Bearer YOUR_API_KEY"

Example Response:

{
  "id": "w62kk43ps3",
  "createdAt": "2025-01-09T19:56:17.164Z",
  "updatedAt": "2025-03-21 20:33:11.721346",
  "email": "johndoe@gmail.com",
  // ...
}
Previousn8nNextAPI Reference

Last updated 2 months ago