Skip to main content
GET
https://api.evergreens.ai
/
v1
/
observations
/
{id}
Get Observations
curl --request GET \
  --url https://api.evergreens.ai/v1/observations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "data": {
    "id": "f1b08336-88f6-47a4-b928-2b72c6ab73b7",
    "ip": "213.162.81.221",
    "user_agent": "PostmanRuntime/7.48.0",
    "http_status": 404,
    "method": "GET",
    "path": "/v1/observations/b798f214-dcea-48bf-b25e-19260498c268",
    "status": "error",
    "metadata": {
      "request": {
        "headers": {
          "accept": "*/*",
          "accept-encoding": "gzip, br",
          "authorization": "Bearer [ENCRYPTED]",
          "cache-control": "no-cache",
          "connection": "Keep-Alive",
          "host": "api.evergreens.ai",
          "user-agent": "PostmanRuntime/7.48.0",
          "x-forwarded-proto": "https",
          "x-real-ip": "213.162.81.221"
        },
        "geo": {
          "continent": "EU",
          "country": "AT",
          "region": "Vienna",
          "postalCode": "1010",
          "regionCode": "9",
          "isEUCountry": "1",
          "timezone": "Europe/Vienna",
          "longitude": "16.37208",
          "latitude": "48.20849"
        }
      },
      "response": {
        "headers": {
          "content-type": "application/json"
        }
      }
    },
    "created_at": "2025-10-08T19:15:03.028Z"
  }
}
Retrieve a specific observation by its unique UUIDv4 ID from Tedi chat completions. This endpoint allows you to obtain detailed information about a single observation, including request metadata and response status. Entity Reference:
ChatEntity
Example

Request

Path Parameters

id
string
required
The unique identifier of the observation to retrieve.

Response

id
string
The unique identifier of the observation.
api_key_id
string
The identifier of the API key used for the request.
ip
string
The IP address from which the request originated.
user_agent
string
The user agent string of the client making the request.
http_status
integer
The HTTP status code returned for the request.
method
string
The HTTP method used for the request (e.g., GET, POST).
path
string
The endpoint path that was accessed.
status
enum
The status of the observation, either “success” or “error”.
metadata
object
Additional metadata about the request and response.
created_at
string
The timestamp when the observation was created.
{
  "status": true,
  "data": {
    "id": "f1b08336-88f6-47a4-b928-2b72c6ab73b7",
    "ip": "213.162.81.221",
    "user_agent": "PostmanRuntime/7.48.0",
    "http_status": 404,
    "method": "GET",
    "path": "/v1/observations/b798f214-dcea-48bf-b25e-19260498c268",
    "status": "error",
    "metadata": {
      "request": {
        "headers": {
          "accept": "*/*",
          "accept-encoding": "gzip, br",
          "authorization": "Bearer [ENCRYPTED]",
          "cache-control": "no-cache",
          "connection": "Keep-Alive",
          "host": "api.evergreens.ai",
          "user-agent": "PostmanRuntime/7.48.0",
          "x-forwarded-proto": "https",
          "x-real-ip": "213.162.81.221"
        },
        "geo": {
          "continent": "EU",
          "country": "AT",
          "region": "Vienna",
          "postalCode": "1010",
          "regionCode": "9",
          "isEUCountry": "1",
          "timezone": "Europe/Vienna",
          "longitude": "16.37208",
          "latitude": "48.20849"
        }
      },
      "response": {
        "headers": {
          "content-type": "application/json"
        }
      }
    },
    "created_at": "2025-10-08T19:15:03.028Z"
  }
}