Ana içeriğe geç

Hesap Özeti

Hesabınızın genel bilgilerini görüntüleme endpoint'i.

📋 Endpoint Bilgileri

  • URL: /api/v1/profil/hesap-ozeti
  • Method: GET
  • Authentication: Bearer Token gerekli

✅ Response Example

{
"kullanici_adi": "john.doe",
"email": "john@example.com",
"uyelik_tarihi": "2024-01-15T00:00:00Z",
"toplam_makale": 145,
"aktif_konu_sayisi": 12,
"toplam_harcama": 3875.5,
"hesap_durumu": "aktif"
}

💻 Kod Örneği

async function getAccountSummary(accessToken) {
const response = await fetch(
"https://integration.seoauthor.ai/api/v1/profil/hesap-ozeti",
{
headers: {
Authorization: `Bearer ${accessToken}`,
},
}
);

return response.json();
}