Documentation

Everything you need to build with Tuerss APIs — from your first request to production best practices.

How to use the Tuerss API

Every Tuerss API follows the same shape: a JSON request to a versioned HTTPS endpoint, authenticated with a bearer key. Responses are always JSON and include a request id you can use for support and log lookups.

The base URL for all endpoints is:

https://api.tuerss.dev/v1

A minimal request looks like this:

request.sh
curl https://api.tuerss.dev/v1/profile-intelligence \
  -H "Authorization: Bearer $TUERSS_KEY" \
  -H "Content-Type: application/json" \
  -d '{ "handle": "@builder" }'

Explore the guides