Skip to main content

Introduction

Seaavey API is a free, fast, and reliable REST API service built for developers. No credit card required — just sign up, grab your API key, and start building.

Base URL

All API requests are made to:

https://api.seaavey.com

Quick Start

Get your first response in 3 steps:

1. Create an account

Sign up at seaavey.com/auth/signup with email or GitHub.

2. Get your API key

After signing in, go to API Keys and create a new key. Copy the key — you’ll need it for every request.

3. Make your first request

curl -X GET "https://api.seaavey.com/downloader/tiktok?url=https://tiktok.com/@user/video/123" \
  -H "x-api-key: YOUR_API_KEY"

That’s it. You’ll get a JSON response with the data.

How It Works

Every request follows the same pattern:

  1. Pick an endpoint from the Endpoint Catalog
  2. Add your API key in the x-api-key header
  3. Pass parameters as query strings (GET) or JSON body (POST)
  4. Get a JSON response back

Response Format

All responses follow a consistent structure:

{
  "status": 200,
  "success": true,
  "latency": "1200 ms",
  "data": { ... }
}

On error:

{
  "status": 400,
  "success": false,
  "message": "Invalid URL"
}

What’s Available

  • Downloader — Download media from TikTok, YouTube, Instagram, Spotify, and more
  • Search — Search Genius lyrics, SoundCloud tracks, Pinterest images, Modrinth mods
  • Tools — AI image upscaler, background remover, website screenshot
  • System — Health check and status monitoring

Browse the full list at Endpoints.

Next Steps