Skip to main content
GET
/
{resourceSlug}
/
session
/
{sessionId}
/
messages.json?messageId=
{messageId}
Retrieve Messages
curl --request GET \
  --url 'https://app.agentcloud.dev/{resourceSlug}/session/{sessionId}/messages.json?messageId={messageId}' \
  --header 'Authorization: Bearer <token>'
import requests

url = "https://app.agentcloud.dev/{resourceSlug}/session/{sessionId}/messages.json?messageId={messageId}"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://app.agentcloud.dev/{resourceSlug}/session/{sessionId}/messages.json?messageId={messageId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://app.agentcloud.dev/{resourceSlug}/session/{sessionId}/messages.json?messageId={messageId}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://app.agentcloud.dev/{resourceSlug}/session/{sessionId}/messages.json?messageId={messageId}"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "Bearer <token>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://app.agentcloud.dev/{resourceSlug}/session/{sessionId}/messages.json?messageId={messageId}")
.header("Authorization", "Bearer <token>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://app.agentcloud.dev/{resourceSlug}/session/{sessionId}/messages.json?messageId={messageId}")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
{
  "messages": [
    {
      "orgId": "<string>",
      "teamId": "<string>",
      "sessionId": "<string>",
      "message": {},
      "ts": 123,
      "authorId": "<string>",
      "isFeedback": true,
      "authorName": "<string>",
      "_id": "<string>",
      "chunkId": "<string>",
      "tokens": 123,
      "chunks": [
        {
          "ts": 123,
          "chunk": "<string>",
          "tokens": 123
        }
      ],
      "codeBlocks": [
        {
          "language": "<string>",
          "codeBlock": "<string>"
        }
      ],
      "completed": true
    }
  ]
}
{
"messages": [
{
"orgId": "<string>",
"teamId": "<string>",
"sessionId": "<string>",
"message": {},
"ts": 123,
"authorId": "<string>",
"isFeedback": true,
"authorName": "<string>",
"_id": "<string>",
"chunkId": "<string>",
"tokens": 123,
"chunks": [
{
"ts": 123,
"chunk": "<string>",
"tokens": 123
}
],
"codeBlocks": [
{
"language": "<string>",
"codeBlock": "<string>"
}
],
"completed": true
}
]
}
{
"message": "<string>",
"code": 123
}
{
"message": "<string>",
"code": 123
}
{
"message": "<string>",
"code": 123
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

resourceSlug
string
required

The resourceSlug is a url parameter of the teamId associated with the user. Anywhere the resourceSlug is used can be interpreted as a teamId Mongodb Object id, unique identifier, length of 24 characters fitting the following regex; [a-f0-9]{24}

sessionId
string
required

The sessionId of the session to retrieve Mongodb Object id, unique identifier, length of 24 characters fitting the following regex; [a-f0-9]{24}

Query Parameters

messageId
string

Optional query parameter to declare a messageId to get messages generated after. i.e. get all messages generated after message: {messageId}. This is useful when attempting to gather messages in a stream. Mongodb Object id, unique identifier, length of 24 characters fitting the following regex; [a-f0-9]{24}

Response

JSON object containing array of all associated messages from this session, will return an empty array if the request is successful but there are no associated agents.

messages
object[]