Skip to main content
PlanetNodes

Submit your first job

Send a small echo workload, inspect its state, and retrieve the result.

All guides →

Start with a deterministic workload

An echo job is the safest first request because it verifies authentication, scheduling, provider execution, and result retrieval without a model dependency.

Submit

Command
curl -X POST https://api.planetnodes.com/jobs \
  -H "X-API-Key: $PLANETNODES_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"type":"echo","payload":{"message":"hello PlanetNodes"}}'

Follow the lifecycle

Use the returned job ID in the console or jobs API. A job moves through queued and assigned states before reaching a terminal completed, failed, or cancelled state.

Related guides