MCP API token management — create, revoke, usage tracking, rate limits, webhook configuration.
curl -X GET https://api.3bids.io/v1/jobs \ -H "Authorization: Bearer 3b_live_..." \ -H "Content-Type: application/json"
const res = await fetch(
"https://api.3bids.io/v1/jobs",
{ headers: { Authorization: "Bearer 3b_live_..." } }
);
const jobs = await res.json();
import requests
r = requests.get(
"https://api.3bids.io/v1/jobs",
headers={"Authorization": "Bearer 3b_live_..."}
)
jobs = r.json()
Schema tables, queries, mutations, and status flows that power the API Token system.