Valstorm LogoDev

ws Endpoints

All endpoints for the ws API group. Great for feeding into an LLM context.

GET

/v1/ws/create

Create Websocket

Responses
200
Successful Response
application/json
{}
404
Not found
API Runner

POST

/v1/ws/send_message

Send Message Route

Request Body
{
  "content": {
    "application/json": {
      "schema": {
        "additionalProperties": true,
        "type": "object",
        "title": "Data"
      }
    }
  },
  "required": true
}
Responses
200
Successful Response
application/json
{}
404
Not found
422
Validation Error
application/json
{
  "$ref": "#/components/schemas/HTTPValidationError"
}
API Runner