Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET https://api.linkedcamp.com/conversations/60f7a1b2c3d4e5f6a7b8c9d1 \ -H "token: YOUR_API_TOKEN"
import requests response = requests.get( "https://api.linkedcamp.com/conversations/60f7a1b2c3d4e5f6a7b8c9d1", headers={"token": "YOUR_API_TOKEN"}, ) print(response.json())
const response = await fetch( "https://api.linkedcamp.com/conversations/60f7a1b2c3d4e5f6a7b8c9d1", { headers: { "token": "YOUR_API_TOKEN" }, } ); const data = await response.json(); console.log(data);
{ "success": true, "message": "Messages found successfully!" }
{ "success": false, "message": "Conversation id is required!" }
Returns all messages in a specific conversation.