API Gateway

One key.
Multiple APIs.

proxanything is a unified API gateway that gives you authenticated access to TikTok data, AI inference, and more — through a single endpoint and a single key.

Explore the API → Health check
example.sh
# TikTok user profile
curl "https://proxanything.com/tiktok/user/info?unique_id=cristiano" \
  -H "X-Api-Key: YOUR_KEY"

# AI chat completion
curl -X POST "https://proxanything.com/ai/v1/chat/completions" \
  -H "X-Api-Key: YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"model":"MODEL-X","messages":[{"role":"user","content":"Hello!"}]}'

Available services

Every service is accessible through the same base URL and authenticated with your API key.

TikTok Data

/tiktok/*

Full access to TikTok data via TikWM. Retrieve user profiles, videos, comments, trending content, ads analytics, hashtags, and more.

  • Users, videos & comments
  • Search & trending feeds
  • Ads & creator analytics
  • Hashtags, music & playlists

AI Inference

/ai/*

LLM inference backed by a vLLM instance on RunPod. Fully OpenAI-compatible — drop in your existing code with just a base URL change.

  • OpenAI-compatible API
  • Chat completions endpoint
  • Model listing
  • Powered by vLLM + RunPod

How it works

Get up and running in minutes. No complex setup required.

1

Get your API key

Contact us to get an API key scoped to the services you need — TikTok, AI, or both.

2

Add the header

Include X-Api-Key: YOUR_KEY in every request. That's the only authentication required.

3

Call the endpoint

Use any HTTP client in any language. Responses are passed through unchanged from the upstream service.

3 000
requests / minute per IP
60 s
upstream timeout
SSL
enforced on all endpoints

Ready to start?

Browse the full API reference, copy-paste code examples, and try endpoints directly in the browser.

Open API Docs