Overview
Get Started
How-to Guides
- Overview
- Logging Basics
- Agentic AI
- Conversational AI
- Luna 2
- Metrics
- Retrieval-Augmented Generation
Cookbooks
- Overview
- Agents
- RAG
Integrations
Concepts
- Metrics
- Luna 2
- Projects
- Logging
- Datasets
- Annotations
- Experiments
- Playground
SDK/API Reference
- Python SDK
- TypeScript SDK
- API
- health
- auth
- system_users
- annotation
- api_keys
- datasets
- experiment
- feedback
- groups
- log_stream
- projects
- protect
- data
- trace
- users
auth
Login Api Key
POST
/
v2
/
login
/
api_key
Copy
Ask AI
curl --request POST \
--url https://api.galileo.ai/v2/login/api_key \
--header 'Content-Type: application/json' \
--data '{
"api_key": "<string>"
}'
Copy
Ask AI
{
"access_token": "<string>",
"token_type": "bearer"
}
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://api.galileo.ai/v2/login/api_key \
--header 'Content-Type: application/json' \
--data '{
"api_key": "<string>"
}'
Copy
Ask AI
{
"access_token": "<string>",
"token_type": "bearer"
}
Assistant
Responses are generated using AI and may contain mistakes.