Ana içeriğe geç

Yazım Tonları

Mevcut yazım tonu seçeneklerini getirmek için kullanılan endpoint.

📋 Endpoint Bilgileri

  • URL: /api/v1/makaleler/yazim-tonlari
  • Method: GET
  • Authentication: Bearer Token gerekli

✅ Response Example

[
{
"id": 1,
"name": "Profesyonel",
"description": "Formal ve teknik dil kullanımı"
},
{
"id": 2,
"name": "Samimi",
"description": "Dostane ve yakın dil kullanımı"
},
{
"id": 3,
"name": "Eğitici",
"description": "Öğretici ve açıklayıcı dil"
}
]

💻 Kullanım

async function getWritingTones() {
const response = await fetch(
"https://integration.seoauthor.ai/api/v1/makaleler/yazim-tonlari",
{
headers: {
Authorization: `Bearer ${accessToken}`,
},
}
);

return response.json();
}