Frametail

Quickstart

Sign in, create a project, add API credentials, and verify traces in a few minutes.

1. Create an account

Open the Frametail marketing site and sign up, or accept an organization invite if your admin added you.

2. Create a project

Projects isolate traces, benchmarks, prompts, and datasets. Pick a human-readable project key (slug) you will use in API headers.

3. Issue an API key

Navigate to Settings → API keys (or Keys in the sidebar). Create a key and copy it immediately — it is only shown once. Keys are prefixed with ft_.

4. Call the API with your project

Every HTTP request must include:

HeaderValue
AuthorizationBearer ft_... (or the raw key)
X-Project-KeyYour project slug

See HTTP API overview for routes and examples.

5. Send a trace from code

The fastest path is the TypeScript SDK with setDefaultConfig, or instrument the fal client for automatic spans. After a successful call, open Traces in the dashboard for your project.

Next steps