Skip to content

List Projects

Basic example showing how to create a client and list annotation projects.

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

1
2
3
4
5
// Create an authenticated Dataloop client
using var client = new DataloopClient(apiKey);

// List all projects accessible by the authenticated user
var projects = await client.Projects.GetMyProjectsAsync();