curl --request GET \
--url https://api.vida.dev/api/v2/conversation/{roomId}/{uuid}
[
{
"success": "true",
"message": "Success",
"conversation": [
{
"message": "Hello World",
"timestamp": 1630480000
}
]
}
]
Fetch specific conversation logs for a given room ID and UUID
curl --request GET \
--url https://api.vida.dev/api/v2/conversation/{roomId}/{uuid}
[
{
"success": "true",
"message": "Success",
"conversation": [
{
"message": "Hello World",
"timestamp": 1630480000
}
]
}
]
Vida API Token
Room Id of the conversation
UUID of the conversation
Successful response
The response is of type object[]
.