Quickstart

Three steps, no CareerStudioMax account needed.

1

Create a developer account

Email + name, no password. Your key is generated immediately and shown once.

register.sh
curl -X POST https://api.careerstudiomax.com/api/transformer/developer/register \
  -H "Content-Type: application/json" \
  -d '{"email":"you@example.com","name":"Your Name"}'
2

Extract entities from career text

Use the api_key from step 1.

extract.sh
curl -X POST https://api.careerstudiomax.com/api/transformer/v1/extract \
  -H "X-API-Key: csk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"text":"5 years as a Senior Engineer at Acme, $145k"}'
3

See it as a graph, not just JSON

Build a career knowledge graph from the same text and watch it render live.

career-graph.sh
curl -X POST https://api.careerstudiomax.com/api/transformer/v1/career-graph \
  -H "X-API-Key: csk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"text":"5 years as a Senior Engineer at Acme, $145k"}'

# or skip curl entirely — paste your text into
# https://transformer.careerstudiomax.com/playground