Valstorm LogoDev

analytics Endpoints

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

POST

/v1/analytics/report

Report Frontend

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