Skip to main content
This guide takes you from a fresh account to a successful API response.
Want to try an endpoint before writing any code? Every tool page has a live playground that calls the exact same production endpoint documented here — no signup required.

Prerequisites

  • A PocketUtils account — sign up free
  • A Starter plan or above. API keys aren’t available on the Free plan — Free is the browser-playground allowance. See Rate Limits & Credits for what each plan includes.

Get started

1

Create an API key

From your dashboard, click New key, give it a name (e.g. “Production”), and copy the generated secret immediately.
The full key is shown exactly once, at creation. PocketUtils stores only its hash — if you lose the key, revoke it from the dashboard and create a new one.
2

Make your first request

Call any endpoint with your key in the Authorization header. GET /v1/down-check is the simplest place to start — it just takes a URL to check.
3

Read the response

A successful call always returns success: true with the result under data:
Every response also carries an X-Credits-Remaining header, or you can check your balance explicitly with GET /v1/quota.
4

Handle errors

A failed call always returns success: false — and never spends a credit:
See the full error code reference.

Next steps

Authentication

All three ways to call the API, and how each is billed.

API Reference

Every endpoint, with parameters, responses, and examples.
Need help? Reach out at support@pocketutils.com.

Related topics

Introduction