FaceSign
REST API Reference

Get supported languages

Retrieve a list of all supported languages

GET
/langs

Authorization

bearerAuth
AuthorizationBearer <token>

API key authentication. Use format "Bearer sk_prod_..." or "Bearer sk_test_..."

In: header

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://api.facesign.ai/langs"
{
  "langs": [
    {
      "id": "string",
      "title": "string"
    }
  ]
}
{
  "error": {
    "type": "authentication_error",
    "message": "Invalid API key provided"
  }
}
{
  "error": {
    "type": "authentication_error",
    "message": "string",
    "code": "string"
  }
}
{
  "error": {
    "type": "rate_limit_error",
    "message": "Rate limit exceeded"
  }
}