Skip to main content
Retrieve complete details of a dataset including configuration, provisioner state, and connected endpoints.

Request

GET
string
/datasets/{name}

Path parameters

name
string
required
The unique name of the dataset to retrieve

Authentication

Requires authentication via tenant credentials.

Response

id
string
Unique identifier (UUID) for the dataset
name
string
Dataset name
dtype
string
Dataset type name (e.g., local_file, remote_weaviate)
configuration
object
Full configuration for the dataset. Structure varies by dataset type.
summary
string
Dataset summary
tags
string
Comma-separated tags
provisioner_state
object
Detailed provisioner state information (for local dataset types)
created_at
string
ISO 8601 timestamp of creation
updated_at
string
ISO 8601 timestamp of last update
connected_endpoints
array
List of endpoints connected to this dataset
curl https://your-domain.com/datasets/legal-docs \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "name": "legal-docs",
  "dtype": "local_file",
  "configuration": {
    "collectionName": "LegalDocuments",
    "httpPort": 8100,
    "ingestionPaths": [
      {
        "path": "/home/user/documents/legal",
        "description": "Legal documents directory"
      }
    ],
    "fileTypes": [".pdf", ".txt", ".docx"]
  },
  "summary": "Legal documents for RAG analysis",
  "tags": "legal,documents,analysis",
  "provisioner_state": {
    "status": "running",
    "state": {
      "httpPort": 8100,
      "container_id": "abc123def456",
      "container_name": "chromadb-local_file"
    },
    "started_at": "2024-03-15T10:30:00Z",
    "stopped_at": null,
    "error": null
  },
  "created_at": "2024-03-15T10:30:00Z",
  "updated_at": "2024-03-15T10:30:00Z",
  "connected_endpoints": [
    {
      "id": "650e8400-e29b-41d4-a716-446655440001",
      "name": "Legal Search API",
      "slug": "legal-search"
    }
  ]
}

Build docs developers (and LLMs) love