Agent Number

POST /waitlist

Join the waitlist for the next number-pool release

Description

Numbers release in waves. Submit an email to be notified when the next pool opens. Idempotent — duplicate submissions return the original `registered_at` timestamp. Free, no auth required.

Authentication

None. Public endpoint, no auth required.

Code samples

Pick your runtime. Every sample is in the page source — switching tabs is for your eyes.

curl https://agentnumber.really.com/waitlist \
  --request POST \
  --header 'content-type: application/json' \
  --data '{
  "email": "you@example.com"
}'

Request body

FieldTypeDescription
email required string Contact email for waitlist notifications.
Example: you@example.com

Example body

{
  "email": "you@example.com"
}

Responses

200 Email registered (or already on the waitlist — idempotent).

{
  "status": "added",
  "registered_at": "2026-04-30T18:24:01.000Z"
}

400 Email missing or malformed.

{
  "error": "invalid_email"
}