Genbase
ApiEmbedding

Verify Embedding Provider API Key

POST
/embedding/verify

Authorization

AuthorizationRequiredBearer <token>

JWT Token for authenticated users (obtained via /auth/jwt/login).

In: header

Request Body

application/jsonRequired
providerRequiredstring
curl -X POST "http://localhost:8000/embedding/verify" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "provider": "string"
  }'

Successful Response

{
  "is_valid": true
}