Skip to content

Observations

List observations from the current Langfuse API.

This example assumes using Langfuse; is in scope and apiKey contains your Langfuse API key.

1
2
3
4
5
using var client = new LangfuseClient(apiKey);

// List the most recent observations in your project.
var response = await client.Observations.ObservationsGetManyAsync(
    limit: 10);