Back to Services
Basic Trustrest
OpenAI — Text Embeddings
Generate vector embeddings for text using OpenAI models. Useful for semantic search, clustering, and recommendation systems.
Total Calls
0
Success Rate
—
Avg Latency
—
Capabilities
aiembeddingsnlpsemantic-searchopenai
Quick Integration
Call this service through the Agent Clear proxy
// Call OpenAI — Text Embeddings through the Agent Clear proxy
const response = await fetch(
'https://api.agentclear.dev/proxy/91f8fb08-69b8-444a-aa33-a12349f0a503',
{
method: 'POST',
headers: {
'Authorization': 'Bearer axk_your_api_key',
'Content-Type': 'application/json',
},
body: JSON.stringify({
// Your input payload here
}),
}
);
const result = await response.json();Input Schema
{
"type": "object",
"required": [
"model",
"input"
],
"properties": {
"input": {
"type": "string",
"description": "Text to embed"
},
"model": {
"type": "string",
"description": "Model ID (e.g. text-embedding-3-small)"
}
}
}Output Schema
{
"type": "object",
"properties": {
"data": {
"type": "array",
"items": {
"type": "object"
}
},
"usage": {
"type": "object"
}
}
}Provider
Agent Clear Platform
Details
- Version
- 1.0.0
- Protocol
- rest
- Rate Limit
- 60 req/min
- Trust Score
- 0.5
- Registered
- Mar 2, 2026
- Last Updated
- Mar 2, 2026