Log10 · Example Payload

Create Session

Create a new Log10 session to group multiple LLM completions into a single trace.

LLMLoggingObservabilityEvaluationFeedbackDebuggingLLMOpsArtificial IntelligenceMachine Learning

Create Session is an example object payload from Log10, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

exampledescriptionrequestresponse

Example Payload

Raw ↑
{
  "example": "Create a Session",
  "description": "Create a new Log10 session to group multiple LLM completions into a single trace.",
  "request": {
    "method": "POST",
    "url": "https://log10.io/api/v1/sessions",
    "headers": {
      "X-Log10-Token": "YOUR_API_TOKEN",
      "X-Log10-Organization": "YOUR_ORGANIZATION_ID"
    },
    "body": {}
  },
  "response": {
    "status": 201,
    "body": {
      "session": {
        "id": "sess_xyz789"
      }
    }
  }
}