GET
/
api
/
chunk
/
{chunk_id}

Authorizations

Authorization
string
headerrequired

Headers

TR-Dataset
string
required

The dataset id or tracking_id to use for the request. We assume you intend to use an id if the value is a valid uuid.

X-API-Version
enum<string>

The API version to use for this request. Defaults to V2 for orgs created after July 12, 2024 and V1 otherwise.

Available options:
V1,
V2

Path Parameters

chunk_id
string
required

Id of the chunk you want to fetch.

Response

200 - application/json
chunk_html
string | null

HTML content of the chunk, can also be an arbitrary string which is not HTML

created_at
string
required

Timestamp of the creation of the chunk

dataset_id
string
required

ID of the dataset which the chunk belongs to

id
string
required

Unique identifier of the chunk, auto-generated uuid created by Trieve

image_urls
(string | null)[] | null

Image URLs of the chunk, can be any list of strings. Used for image search and RAG.

link
string | null

Link to the chunk, should be a URL

location
object

Location that you want to use as the center of the search.

metadata
any | null

Metadata of the chunk, can be any JSON object

num_value
number | null

Numeric value of the chunk, can be any float. Can represent the most relevant numeric value of the chunk, such as a price, quantity in stock, rating, etc.

tag_set
(string | null)[] | null

Tag set of the chunk, can be any list of strings. Used for tag-filtered searches.

time_stamp
string | null

Timestamp of the chunk, can be any timestamp. Specified by the user.

tracking_id
string | null

Tracking ID of the chunk, can be any string, determined by the user. Tracking ID's are unique identifiers for chunks within a dataset. They are designed to match the unique identifier of the chunk in the user's system.

updated_at
string
required

Timestamp of the last update of the chunk

weight
number
required

Weight of the chunk, can be any float. Used as a multiplier on a chunk's relevance score for ranking purposes.