§ Integration · Just HTTP · no SDK needed

Raw HTTP × ToolCenter.

Every ToolCenter endpoint is plain HTTP + JSON. Your language has a client library — use it. We provide SDKs for Node, Python, and PHP, but a curl is never more than 5 lines away.

§ Why this pairing

Built for the
whole workflow.

No custom SDK lock-in, no waiting for a ToolCenter-branded library for your stack. If your language has a HTTP client, you're three lines from shipping.

01

Send a bearer token

Authorization: Bearer tc_live_… — every endpoint, no exceptions.

02

POST JSON

Content-Type: application/json. Request bodies are documented per endpoint at /docs.

03

Read JSON back

Responses are always JSON with consistent shape (code + message on errors).

§ Worked recipe

Bash one-liner for a nightly SSL expiry check

A real pipeline you can copy-paste. Adjust the trigger and endpoint for your stack.

Trigger

crontab · 0 2 * * *

Action

curl /v1/ssl?domain=example.com | jq .days_until_expiry

Result

Email alert if < 30 days. Works in 3 lines of bash.

§ Heads up

Our idempotency key header (Idempotency-Key) is your friend for retries — include a UUID per logical request so repeated POSTs don't double-bill.

§ Try it today

Wire Raw HTTP in 10 minutes.

Free tier covers 100 calls — enough to stand up the pipeline before committing. No credit card, no gotchas.