For the complete documentation index, see llms.txt. This page is also available as Markdown.

get_data_storage_entry()

get_data_storage_entry()

Fetch an entry's metadata + storage locations (no download)

Arguments

{
  "data_storage_id": "019cd179-8d61-7f65-a79c-b965dda9eac3"
}

Returns

Same model as the upload response.

{
  "data_storage": {
    "id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "name": "string",
    "description": "string",
    "content": "string",
    "status": "string",
    "embedding": [
      0
    ],
    "is_collection": true,
    "tags": [
      "string"
    ],
    "parent_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "project_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "dataset_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
    "file_path": "string",
    "bigquery_schema": null,
    "user_id": "string",
    "created_at": "2026-06-03T08:00:00Z",
    "modified_at": "2026-06-03T08:00:00Z",
    "share_status": "string",
    "short_alias": "string"
  },
  "storage_locations": [
    {
      "id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
      "data_storage_id": "019cd179-8d61-7f65-a79c-b965dda9eac3",
      "storage_config": {
        "storage_type": "string",
        "content_type": "string",
        "content_schema": null,
        "metadata": null,
        "location": "string",
        "signed_url": "string"
      },
      "created_at": "2026-06-03T08:00:00Z"
    }
  ]
}

Last updated