ProfileClaw

Docs Guide

Authentication

This page covers API key / Bearer auth, required headers, and the recommended setup order.

Header format

Prefer `Authorization: Bearer <key>`, with `X-API-Key` as an alternative. New integrations should usually validate the key with Context API first.

Code
1curl "https://api.profileclaw.com/api/v1/context" -H "Authorization: Bearer $PROFILECLAW_API_KEY"

Recommended sequence

Create an API key first, call `/api/v1/context` second, then expand into career graph, prediction, webhooks, and other specialized endpoints only when needed.