LYRICA LABS

LYRICA LABS
CORE v2.5
2025 STABLE
API v4

LYRICA
LABS API

Lyrica Labs API ekosistemi, geliştiricilere güçlü araçlar sunar. Proxy API ile 900+ aktif proxy'ye erişin, Temp Mail API ile geçici e-posta yönetin, Nexa AI ile metin üretin ve Aurea Vision ile görsel oluşturun. Gerçek zamanlı veriler, yüksek hız ve limitsiz ölçeklenebilirlik.

900+

AKTİF PROXY

12ms

ORT. GECİKME

99.9%

GÜVENİLİRLİK

50B+

AYLIK İSTEK

PROXY API

ÜCRETSİZ V4 STABLE

Lyrica Labs Proxy API v4

Ücretsiz, hızlı ve güvenilir proxy listesi servisi. 900+ aktif proxy sunucusu, SOCKS4, SOCKS5, HTTP, HTTPS protokolleri ve elite anonimlik seviyeleri.

Özellikler

Hızlı Yanıt

Ortalama 250ms response time

Güvenli Auth

JWT ve API Token desteği

900+ Proxy

Aktif proxy sunucuları

Çoklu Protokol

SOCKS4, SOCKS5, HTTP, HTTPS

Authentication

POST Bearer Token (JWT)
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9...
POST API Token (Body içinde)
{
  "token": "lyrica_labs_tk_51Mn8s_ps_3XXXXXXXXXXX"
}

API Endpoint

POST Proxy Listesi Alma
ACTIVE
https://api.lyricalabs.com/v4/enterprise/proxy

Content-Type: application/json

Kullanım Örnekleri

Basit Proxy Listesi
curl -X POST https://api.lyricalabs.com/v4/enterprise/proxy \
  -H "Authorization: Bearer YOUR_JWT_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"page": 1, "limit": 10}'
SOCKS4 Elite Proxy'ler
curl -X POST https://api.lyricalabs.com/v4/enterprise/proxy \
  -H "Content-Type: application/json" \
  -d '{
    "token": "lyrica_labs_tk_51Mn8s_ps_351XXXXXXXXXX",
    "protocol": "socks4",
    "anonymity": "elite",
    "support_https": true,
    "page": 1,
    "limit": 20
  }'

Yanıt Formatı

{
  "status": 1,
  "message": "success",
  "total_count": 949,
  "data": [...],
  "request_details": {...},
  "execution_time_ms": 245.67,
  "note": "BU API, Lyrica Labs tarafından sağlanmaktadır...",
  "info": {...}
}

Limitler ve Kurallar

Limit Değer Açıklama
Rate Limit 3 saniye/token Aynı token'dan 3 saniyede bir istek
Max Page 10 Maksimum sayfa numarası
Max Limit 100 Sayfa başına maksimum sonuç
Kredi/İstek 1 Her istek 1 kredi kullanır
Günlük Limit 100-1000 Kullanıcı planına göre değişir

TEMP MAIL API

ÜCRETSİZ ENTERPRISE EDITION

Lyrica Labs Enterprise Temp Mail API

Geçici e-posta adresi oluşturma, gelen kutusu kontrolü ve e-posta içeriği okuma API'si. Kayıt işlemleri, doğrulama kodları ve geçici hesaplar için ideal çözüm.

Temel Bilgiler

Base URL

https://api.lyricalabs.com/v4/enterprise/temp-mail

Method

POST

Content-Type

application/json

Auth

token (Body içinde)

Yeni E-Posta Oluşturma (create)

Sistemden rastgele bir domain ile lyrica-labs-xxxxxxx@domain.com formatında bir adres oluşturur ve size özel bir session_key döndürür.

İstek (Request):
{
  "token": "YOUR_LYRICALABS_TOKEN",
  "feature": "create"
}
BAŞARILI YANIT ÖRNEĞİ
{
  "success": "true",
  "action": "read",
  "timestamp": "2026-01-07T13:42:17.250Z",
  "execution_time_ms": 382.29,
  "credits_used": 1,
  "data": {
    "from": {
      "address": "utkutuzcuu@gmail.com",
      "name": "Utku Tuzcu"
    },
    "subject": "E-posta başlığı",
    "content": "E POSTA İÇERİĞİ",
    "sent_at": "2026-01-07T13:41:57+00:00"
  },
  "additional_information": {
    "created_at": "2026-01-07T13:42:17.250Z",
    "provider": "LyricaLabs API",
    "note": "A temporary email has been created using the Lyrica Labs Temp Mail API. However, we do not accept any responsibility for misuse of Lyrica Labs or any other service through this email."
  },
  "info": {
    "site": "https://lyricalabs.com",
    "telegram": "https://t.me/lyricalabs"
  }
}
ÖNEMLİ

session_key değerini kaybetmeyin! Mesajları okumak için bu anahtarı kullanacaksınız.

Entegrasyon Örnekleri

JavaScript (Fetch API)
const response = await fetch(
  'https://api.lyricalabs.com/v4/enterprise/temp-mail',
  {
    method: 'POST',
    body: JSON.stringify({
      token: 'YOUR_TOKEN',
      feature: 'create'
    })
  }
);
const result = await response.json();
console.log(result.data.email);
Python (Requests)
import requests

payload = {
    "token": "YOUR_TOKEN",
    "feature": "create"
}
response = requests.post(
    "https://api.lyricalabs.com/v4/enterprise/temp-mail",
    json=payload
)
print(response.json())

Notlar

DİĞER API'LER

AI POWERED ALL POST ONLY

Lyrica Labs API Güncellemeleri

Lyrica Labs API'lerinde önemli güncellemeler yapılmıştır. ÖNEMLİ DETAY OLARAK, API'LER ARTIK SADECE POST METHODU KABUL EDİYOR.

Nexa Generative API

POST

Endpoint artık sadece POST isteği kabul etmektedir:

https://api.lyricalabs.com/v4/llm/nexa/generative/model/completions
Örnek POST isteği
{
  "token": "lyrica_labs_tk_51mn8s_xxxxxxxxxxxxx",
  "prompt": "Merhaba, tam adın ne?",
  "model": "nexa-7.0-express",
  "temperature": 0.9,
  "max_tokens": 4098,
  "top_p": 0.95,
  "frequency_penalty": 0.2,
  "presence_penalty": 0.1,
  "custom_system_instruction": "Lütfen kısa ve net cevap ver."
}
Örnek Yanıt
{
  "basarilimi": true,
  "status": "Success",
  "message": "Nexa message processed successfully",
  "output": "Merhaba! Lyrica Labs, yenilikçi yapay zeka çözümleri geliştiren bir platformdur. 2025 yılında kurulan platform, özellikle doğal dil işleme, makine öğrenimi ve AI zeka araştırmalarına odaklanıyor",
  "model": "nexa-7.0-express",
  "kullanilan_parametreler": {
    "temperature": 0.6,
    "max_tokens": 4096,
    "top_p": 0.95,
    "frequency_penalty": 0.2,
    "presence_penalty": 0.1
  },
  "warning": [
    "Model nexa-7.0-express maksimum 0.6 temperature değerini destekliyor. Siz 0.9 istediniz, bu yüzden 0.6 olarak ayarlandı.",
    "Model nexa-7.0-express maksimum 4096 max_tokens değerini destekliyor. Siz 4098 istediniz, bu yüzden 4096 olarak ayarlandı."
  ],
  "security": "Nexa'nın ürettiği yanıtlar, gerçeklik taşıyamayabilir. Resmi yerlerde kullanacaksınız, dikkatli olunuz.",
  "web_arama_kullanildi": false,
  "info": {
    "sitemiz": "https://lyricalabs.com",
    "telegramm": "https://t.me/lyricalabs"
  }
}

Görsel Üretim API

POST
https://api.lyricalabs.com/v4/t2i/aurea/generative/model/completions
Safe Görsel
{
  "token": "...",
  "prompt": "a beautiful sunset",
  "mode": "safe",
  "width": 1024,
  "height": 768
}
NSFW Görsel
{
  "token": "...",
  "prompt": "a beautiful sunset",
  "mode": "nsfw"
}
Avatar Üretimi
{
  "token": "...",
  "name": "Utku Tuzcu",
  "size": 256,
  "background": "4f46e5",
  "format": "png",
  "feature": "avatar"
}

Reverse Image Search API

POST
https://api.lyricalabs.com/v4/t2i/aurea/generative/model/completions
Ters Görsel Arama
{
  "token": "lyrica_labs_tk_51mn8s_xxxxxxxxxxxxx",
  "feature": "reverse_image_search",
  "url": "https://example.com/image.jpg",
  "gl": "tr"
}
Örnek Yanıt
{
  "error": false,
  "info": {
    "sitemiz": "https://lyricalabs.com",
    "telegramm": "https://t.ly/lyricalabs"
  },
  "results": [
    {
      "title": "Bulunan görsel başlığı",
      "link": "https://kaynak-site.com",
      "imageUrl": "https://kaynak-site.com/resim.jpg",
      "thumbnailUrl": "https://kaynak-site.com/kucuk-resim.jpg"
    }
  ],
  "feature": "reverse_image_search",
  "credits_used": 2
}
📌 Önemli Notlar
  • Maliyet: Ters görsel arama 2 kredi kullanır (diğer görsel işlemleri 1 kredi)
  • Rate Limit: 6 saniyede 1 istek
  • Format: JSON yanıt döndürür (görsel binary değil)
  • gl parametresi: "tr", "us", "de" gibi ülke kodları (opsiyonel)
  • url parametresi: http:// veya https:// ile başlamalı
Python Örneği
import requests

def reverse_image_search(image_url, token, country="tr"):
    payload = {
        "token": token,
        "feature": "reverse_image_search",
        "url": image_url,
        "gl": country
    }
    response = requests.post(
        "https://api.lyricalabs.com/v4/t2i/aurea/generative/model/completions",
        json=payload
    )
    return response.json()

# Kullanım
result = reverse_image_search(
    "https://example.com/myphoto.jpg",
    "your_token_here",
    "tr"
)
for item in result['results']:
    print(f"Başlık: {item['title']}")
    print(f"Link: {item['link']}")
    print(f"Görsel: {item['imageUrl']}")
    print("---")

Link Preview API

POST
https://api.lyricalabs.com/v3/link-preview/powerless
Örnek POST isteği
{
  "token": "lyrica_labs_tk_51mn8s_xxxxxxxxxxxxx",
  "url": "https://github.com"
}
Örnek Yanıt
{
  "basarilimi": true,
  "status": "Success",
  "mesaj": "Link önizleme verisi başarıyla çekildi.",
  "cikti": {
    "url": "https://github.com/",
    "title": "GitHub · Change is constant. GitHub keeps you ahead.",
    "description": "Join the world's most widely adopted, AI-powered developer platform...",
    "image": "https://images.ctfassets.net/…/GH-Homepage-Universe-img.png",
    "favicon": "https://github.githubassets.com/favicons/favicon",
    "site_name": "GitHub"
  }
}

Web Search & Image Search API

POST
https://api.lyricalabs.com/v4/news/web-search
Görsel Arama (Image Search)
{
  "token": "lyrica_labs_tk_51mn8s_xxxxxxxxxxxxx",
  "q": "İstanbul manzaraları",
  "feature": "image-search",
  "limit": 20
}
Web Arama (Normal Search)
{
  "token": "lyrica_labs_tk_51mn8s_xxxxxxxxxxxxx",
  "q": "Python programlama dili",
  "limit": 15,
  "cc": "com.tr"
}
💡 Notlar
  • feature: "image-search" ile görsel arama yapılır.
  • Görsel arama sonuçları JSON formatında ve doğrudan görsel URL'leri içerir.
  • feature parametresi belirtilmezse normal web search çalışır.
  • Web arama sonuçları başlık, URL ve özet (snippet) içerir.
API'LER HAKKINDA GENEL NOTLAR
  • Tüm API'ler sadece POST methodu ile çalışır.
  • Token veya JWT ile kimlik doğrulama gereklidir.
  • Rate limit ve günlük kredi kotası uygulanır.
  • API'ler ücretsizdir, ancak kötüye kullanımda sorumluluk kullanıcıdadır.
API'LER HAKKINDA ÖNEMLİ NOTLAR
  • Tüm API'ler sadece POST methodu ile çalışır.
  • Token veya JWT ile kimlik doğrulama gereklidir.
  • Rate limit ve günlük kredi kotası uygulanır.
  • API'ler ücretsizdir, ancak kötüye kullanımda sorumluluk kullanıcıdadır.

NEXA MODELS

DB SYNC: OK

Modeller yükleniyor...

API REFERENCE

ENDPOINTS: ONLINE

GELİŞİM PLANI

Q2 2025

Nexa Quantum Sürümü

Kuantum bilgisayar altyapısı ile saniyede milyonlarca token işleme kapasitesine geçiş.

Q3 2025

Aurea Vision Pro

Video karelerini anlık olarak işleyen ve betimleyen ultra-vizyon motoru lansmanı.

ÖRNEK KODLAR

Python Proxy Client

import requests
import json

class LyricalabsProxyAPI:
    def __init__(self, token=None, jwt_token=None):
        self.base_url = "https://api.lyricalabs.com/v4/enterprise/proxy"
        self.token = token
        self.jwt_token = jwt_token
    
    def get_proxies(self, protocol="", anonymity="", page=1, limit=10):
        headers = {"Content-Type": "application/json"}
        
        if self.jwt_token:
            headers["Authorization"] = f"Bearer {self.jwt_token}"
            data = {"protocol": protocol, "anonymity": anonymity, "page": page, "limit": limit}
        else:
            data = {
                "token": self.token,
                "protocol": protocol,
                "anonymity": anonymity,
                "page": page,
                "limit": limit
            }
        
        response = requests.post(self.base_url, headers=headers, json=data)
        return response.json()
    
    def get_socks4_proxies(self, limit=20):
        return self.get_proxies(protocol="socks4", anonymity="elite", limit=limit)
    
    def get_http_proxies(self, limit=15):
        return self.get_proxies(protocol="http", anonymity="anonymous", limit=limit)

# Kullanım
api = LyricalabsProxyAPI(token="lyrica_labs_tk_51Mn8s_XXXXX...")
proxies = api.get_socks4_proxies(limit=10)
print(f"Toplam {proxies['total_count']} proxy bulundu")

JavaScript Temp Mail Client

class LyricalabsTempMailClient {
    constructor(token) {
        this.baseUrl = 'https://api.lyricalabs.com/v4/enterprise/temp-mail';
        this.token = token;
    }

    async createEmail() {
        const response = await fetch(this.baseUrl, {
            method: 'POST',
            headers: { 'Content-Type': 'application/json' },
            body: JSON.stringify({
                token: this.token,
                feature: 'create'
            })
        });
        return await response.json();
    }

    async getInbox(mailToken) {
        const response = await fetch(this.baseUrl, {
            method: 'POST',
            headers: { 'Content-Type': 'application/json' },
            body: JSON.stringify({
                token: this.token,
                feature: 'inbox',
                mail_token: mailToken
            })
        });
        return await response.json();
    }

    async readMessage(mailToken, messageId) {
        const response = await fetch(this.baseUrl, {
            method: 'POST',
            headers: { 'Content-Type': 'application/json' },
            body: JSON.stringify({
                token: this.token,
                feature: 'read',
                mail_token: mailToken,
                message_id: messageId
            })
        });
        return await response.json();
    }
}

// Kullanım
const client = new LyricalabsTempMailClient('YOUR_TOKEN');
const newEmail = await client.createEmail();
console.log('Yeni e-posta:', newEmail.data.email);

S.S.S.

API anahtarımı nasıl alırım?

Giriş yaptıktan sonra "Developer Dashboard" sekmesinden yeni bir gizli anahtar oluşturabilirsiniz.

Ücretsiz kullanım limiti var mı?

Evet, her yeni hesap aylık 50.000 token ücretsiz kullanım hakkı ile başlar.

Proxy API için rate limit nedir?

Proxy API için rate limit: 3 saniyede bir istek. Günlük kredi limiti 100-1000 arası değişir.

Temp Mail API ne kadar süre geçerli?

Oluşturulan geçici e-postalar 24 saat boyunca aktif kalır, sonrasında otomatik silinir.

KİMLİK DOĞRULAMA

Lyrica Labs API servisleri, 2026 güvenlik standartlarına uygun olarak Bearer Token mekanizması ile korunmaktadır. Tüm istekler şifreli SSL (TLS 1.3) katmanı üzerinden gerçekleştirilmelidir.

Authorization: Bearer lyrica_labs_tk_51Mn8s_ps_0xxxxxxxxxxxxxxxxx
RATE LIMITING IP WHITELISTING 2FA AUTH JWT TOKENS