GET
/
documents
/
v1
/
datasets
/
{dataset_name}
curl --request GET \
  --url https://api.tensorlake.ai/documents/v1/datasets/{dataset_name} \
  --header 'Authorization: Bearer <token>'
{
  "analytics": {
    "totalErrorJobs": 1,
    "totalJobs": 1,
    "totalPendingJobs": 1,
    "totalProcessingJobs": 1,
    "totalSuccessfulJobs": 1
  },
  "createdAt": "<string>",
  "description": "<string>",
  "id": "<string>",
  "jobs": {
    "hasMore": true,
    "items": [
      {
        "createdAt": "<string>",
        "errorMessage": "<string>",
        "fileId": "<string>",
        "fileName": "<string>",
        "id": "<string>",
        "outputsUrl": "<string>",
        "status": "failure",
        "updatedAt": "<string>"
      }
    ],
    "nextCursor": "<string>",
    "prevCursor": "<string>"
  },
  "name": "<string>",
  "settings": {
    "chunkStrategy": null,
    "deliverWebhook": "false",
    "figureSummarization": true,
    "figureSummarizationPrompt": "none",
    "formDetectionMode": "vlm",
    "jsonSchema": "<any>",
    "modelProvider": null,
    "structuredExtractionPrompt": "none",
    "tableOutputMode": "json",
    "tableParsingMode": "tsr",
    "tableSummarization": true,
    "tableSummarizationPrompt": "none"
  },
  "status": "idle"
}

Modify the settings or metadata for a dataset. Note that changes to a dataset’s settings are not retroactive—they apply only to new document parsing or structured extraction executions.

The unique name constraint remains enforced. If you change the dataset’s name, the new name must be unique within your organization.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

dataset_name
string
required

Response

200
application/json
Get a dataset
analytics
object
required
createdAt
string
required
id
string
required
name
string
required
settings
object
required
description
string | null
jobs
object
status
enum<string>
Available options:
idle,
processing