Create a new status

POST /status/create
application/x-www-form-urlencoded

Body Required

  • status string

    The status text

Responses

  • 200

    Status created successfully

  • 400

    Invalid status

POST /status/create
curl \
 -X POST https://blips.club/status/create \
 -H "Content-Type: application/x-www-form-urlencoded" \
 -d 'status=string'
Request example
{
  "status": "string"
}