Step 1
Create an API key
Head to API Keys and create a key for your environment. Copy the full secret — you'll only see it once.
Step 2
Store it as an environment variable
.env
TUERSS_KEY=tk_live_a91f...Step 3
Send your first request
Call the Profile Intelligence API to resolve a handle:
app.ts
const res = await fetch("https://api.tuerss.dev/v1/profile-intelligence", {
method: "POST",
headers: {
Authorization: `Bearer ${process.env.TUERSS_KEY}`,
"Content-Type": "application/json",
},
body: JSON.stringify({ handle: "@builder" }),
})
const data = await res.json()
console.log(data.followers) // 128400Step 4
Handle the response
response.json
{
"handle": "@builder",
"followers": 128400,
"status": "ok",
"request_id": "req_23af9"
}That's it — you're making live calls. Explore the full catalog to find more APIs.