curl --request GET \
--url https://api.lunary.ai/v1/views/{id}
{
"id": "1234abcd",
"name": "LLM Conversations",
"data": [
"AND",
{
"id": "models",
"params": {
"models": [
"gpt-4"
]
}
}
],
"columns": {
"id": "ID",
"content": "Content"
},
"icon": "chat",
"type": "llm",
"projectId": "project123",
"ownerId": "user456",
"updatedAt": "2023-04-01T12:00:00Z"
}
Retrieves details of a specific view by its ID.
curl --request GET \
--url https://api.lunary.ai/v1/views/{id}
{
"id": "1234abcd",
"name": "LLM Conversations",
"data": [
"AND",
{
"id": "models",
"params": {
"models": [
"gpt-4"
]
}
}
],
"columns": {
"id": "ID",
"content": "Content"
},
"icon": "chat",
"type": "llm",
"projectId": "project123",
"ownerId": "user456",
"updatedAt": "2023-04-01T12:00:00Z"
}
Successful response
The response is of type object
.