Pratik Jadhav

API Docs

Minimal endpoint reference with parameters and request samples.

GET/api/projects/{id}

Returns a single project with delivery status and timeline metadata.

ParamTypeRequiredNotes
idstringYesProject identifier
expandstring[]NoOptional related entities
curl -X GET 'https://alexrivera.dev/api/projects/ctl-plane?expand=milestones' \
  -H 'Authorization: Bearer <token>'
POST/api/experiments

Creates a new experiment record and links it to a hypothesis stream.

ParamTypeRequiredNotes
titlestringYesExperiment title
tagsstring[]YesClassifiers and context
outcomestringNoResult summary
curl -X POST 'https://alexrivera.dev/api/experiments' \
  -H 'Content-Type: application/json' \
  -d '{"title":"Adaptive retries","tags":["queue","resilience"]}'