Freemium
Jina AI Embeddings
Jina AI Embeddings API provides powerful vector embedding capabilities that transform text, images, and other data types into dense vectors for similarity search, recommendation systems, and machine learning pipelines. It supports scalable, efficient retrieval of information across various data modalities, making it a top choice for developers building AI-enhanced applications.
1
Endpoints
0
Views
Jul 20, 2025
Last Checked
10,000 tokens/month
Rate Limit
API Endpoints
Creates embeddings from text input
Full URL
https://api.jina.ai/v1/embeddings
Code Examples
curl -X POST 'https://api.jina.ai/v1/embeddings' \
-H 'Authorization: Bearer YOUR_API_KEY'
Parameters
{ "input": [ "The quick brown fox" ], "model": "jina-embeddings-v2-base-en" }
Example Response
{
"data": [
{
"embedding": [
0.1,
-0.2,
0.3
]
}
],
"model": "jina-embeddings-v2-base-en",
"usage": {
"total_tokens": 4
}
}
Version
v1
Rate Limit
5000 tokens/minute
Tags
embeddingssemantic-search
Technical Details
Authentication
API KeyResponse Formats
JSONAvailability
globalStatus
Published Rate Limits
10,000 tokens/month (free)
Supported Languages
PythonJavaScript
Use Cases
search engines
clustering
Related APIs
Discover similar APIs that might interest you