{ "opencollection": "1.0.0", "info": { "name": "langfuse AnnotationQueues Datasets API", "version": "1.0" }, "items": [ { "info": { "name": "Datasets", "type": "folder" }, "items": [ { "info": { "name": "datasets_list", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/v2/datasets", "params": [ { "name": "page", "value": "", "type": "query", "description": "page number, starts at 1" }, { "name": "limit", "value": "", "type": "query", "description": "limit of items per page" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get all datasets" }, { "info": { "name": "datasets_create", "type": "http" }, "http": { "method": "POST", "url": "{{baseUrl}}/api/public/v2/datasets", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create a dataset" }, { "info": { "name": "datasets_get", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/v2/datasets/:datasetName", "params": [ { "name": "datasetName", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get a dataset" }, { "info": { "name": "datasets_getRun", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/datasets/:datasetName/runs/:runName", "params": [ { "name": "datasetName", "value": "", "type": "path" }, { "name": "runName", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get a dataset run and its items" }, { "info": { "name": "datasets_deleteRun", "type": "http" }, "http": { "method": "DELETE", "url": "{{baseUrl}}/api/public/datasets/:datasetName/runs/:runName", "params": [ { "name": "datasetName", "value": "", "type": "path" }, { "name": "runName", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Delete a dataset run and all its run items. This action is irreversible." }, { "info": { "name": "datasets_getRuns", "type": "http" }, "http": { "method": "GET", "url": "{{baseUrl}}/api/public/datasets/:datasetName/runs", "params": [ { "name": "datasetName", "value": "", "type": "path" }, { "name": "page", "value": "", "type": "query", "description": "page number, starts at 1" }, { "name": "limit", "value": "", "type": "query", "description": "limit of items per page" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get dataset runs" } ] } ], "bundled": true }