الحصول على معلومات تخزين المتجهات
get
Retrieve information about the vector store associated with the API key.
Header parameters
x-api-keystringRequired
The API key for authentication.
Responses
200
Vector store information retrieved successfully.
application/json
get
GET /api/v1/vector-stores/me HTTP/1.1
Host: api.rememberizer.ai
x-api-key: text
Accept: */*
200
Vector store information retrieved successfully.
{
"id": "text",
"name": "text",
"description": "text",
"embedding_model": "text",
"indexing_algorithm": "text",
"vector_dimension": 1,
"search_metric": "text",
"created": "2025-06-30T23:20:15.449Z",
"modified": "2025-06-30T23:20:15.449Z"
}
طلبات مثال
curl -X GET \
https://api.rememberizer.ai/api/v1/vector-stores/me \
-H "x-api-key: YOUR_API_KEY"
تنسيق الاستجابة
{
"id": "vs_abc123",
"name": "My Vector Store",
"description": "مخزن متجهات لوثائق المنتجات",
"embedding_model": "sentence-transformers/all-mpnet-base-v2",
"indexing_algorithm": "ivfflat",
"vector_dimension": 128,
"search_metric": "cosine_distance",
"created": "2023-06-01T10:30:00Z",
"modified": "2023-06-15T14:45:00Z"
}
المصادقة
تتطلب هذه النقطة النهائية المصادقة باستخدام مفتاح API في رأس x-api-key
.
ردود الأخطاء
رمز الحالة
الوصف
401
غير مصرح - مفتاح API غير صالح أو مفقود
404
غير موجود - لم يتم العثور على متجر المتجهات
500
خطأ في الخادم الداخلي
تسترجع هذه النقطة النهاية معلومات حول متجر المتجهات المرتبط بمفتاح API المقدم. إنها مفيدة للتحقق من تفاصيل التكوين، بما في ذلك نموذج التضمين، والأبعاد، ومقياس البحث المستخدم. يمكن أن تكون هذه المعلومات قيمة لتحسين استعلامات البحث وفهم قدرات متجر المتجهات.
Last updated