Skip to main content
Choose the provider/framework your application already uses, or use OpenTelemetry OTLP ingest if you already have OTEL in your stack.

Supported integrations

OpenAI

Anthropic

Gemini

Amazon Bedrock

Vercel AI SDK

LangChain

More integrations

Azure

Google AI Platform

Cohere

Together AI

Vertex AI

GR

Groq

MI

Mistral

OL

Ollama

LLM

LiteLLM

RE

Replicate

SageMaker

TR

Transformers

AA

Aleph Alpha

WX

watsonx

LlamaIndex

HY

Haystack

DS

DSPy

CR

CrewAI

OTEL

OpenTelemetry OTLP

OpenTelemetry (OTLP ingest)

If you already use OpenTelemetry, you can export OTLP traces directly to Latitude.
  • URL (Latitude Cloud): https://gateway.latitude.so/api/v3/traces
  • Auth: Authorization: Bearer YOUR_API_KEY
  • Formats: OTLP Protobuf (application/x-protobuf) or OTLP JSON (application/json)
Example (OpenTelemetry Collector):
receivers:
  otlp:
    protocols:
      grpc:
      http:

exporters:
  otlp_http/latitude:
    traces_endpoint: https://gateway.latitude.so/api/v3/traces
    headers:
      Authorization: Bearer ${LATITUDE_API_KEY}

service:
  pipelines:
    traces:
      receivers: [otlp]
      exporters: [otlp_http/latitude]
If you are self-hosting, replace the hostname with your Gateway base URL.