Skip to content
GET /auth/providers

Response Body

providersstring[]
signup_enabledboolean
curl -X GET 'https://api.elaichi.ai/auth/providers' \
  -H 'Content-Type: application/json'
const response = await fetch('https://api.elaichi.ai/auth/providers', {
  method: 'GET',
  headers: {
    'Content-Type': 'application/json',
  },
});

const data = await response.json();
console.log(data);
import os
import requests

url = "https://api.elaichi.ai/auth/providers"
headers = {
    "Content-Type": "application/json",
}

response = requests.get(url, headers=headers)
print(response.json())