Skip to main content
GET
/
v1
/
beta
/
private_indexes
/
{id}
/
cURL
curl --request GET \
  --url https://trytako.com/api/v1/beta/private_indexes/{id}/ \
  --header 'X-API-Key: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "is_default": true,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z",
  "ontology_status": "<string>",
  "kg_elements_bucket_key": "<string>",
  "data_mapping_bucket_keys": [
    "<string>"
  ]
}

Notes

  • To authenticate, you’ll need a Tako API key. It’s best practice to store it as an environment variable to avoid hardcoding sensitive credentials in your code.
  • Retrieves detailed information about a specific private index by its ID.

Authorizations

X-API-Key
string
header
required

Path Parameters

id
string
required

ID of the private index

Response

Private index details

id
string
required
name
string
required
is_default
boolean
required
created_at
string<date-time>
required
updated_at
string<date-time>
required
ontology_status
string
required
description
string | null
kg_elements_bucket_key
string | null
data_mapping_bucket_keys
string[] | null
I