Skip to content

Quick Start

PromptJang is currently a founder-assisted beta. Request access from tp.babparn@gmail.com. There is no public self-service signup.

1. Receive a provisioned workspace

The founder reviews the request, creates the workspace, and sends the client owner their login details. The provisioning surface is restricted to the founder through Google sign-in.

2. Sign in

Sign in at app.promptjang.net/login. Billing activation is paused during the current beta, so founder-provisioned workspaces receive exempt access while usage is still recorded locally. The unchanged production price is $0.10 per 1,000 accepted items; no live charge is created while billing remains disabled.

3. Create an API key and webhook target

Create the API key from the dashboard. Then create a webhook target. Copy both the API key and webhook signing secret when they are shown; neither secret is shown again. Webhook remains the default onboarding path.

4. Send an event

bash
curl -X POST "https://api.promptjang.net/e/YOUR_ENDPOINT_ID" \
  -H "Authorization: Bearer pj_live_YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Idempotency-Key: order-ORD-001-created" \
  -H "X-Event-Type: order.created" \
  -d '{"order_id":"ORD-001","amount":99.99}'
http
HTTP/1.1 202 Accepted
json
{
  "id": "a1b2c3d4e5f6a7b8c9d0e1f2a3b4c5d6",
  "status": "QUEUED"
}

Repeating the same target, idempotency key, and payload returns the original event without creating another delivery or usage entry. A different payload with the same key returns 409.

5. Inspect delivery

bash
curl "https://api.promptjang.net/api/v1/events/EVENT_ID" \
  -H "Authorization: Bearer pj_live_YOUR_API_KEY"

The event view contains the current state and every delivery attempt. Failed targets use 60, 120, 240, 480, and 960-second retry delays before the event becomes EXPIRED.

Next

Released under the MIT License.