Μετάβαση στο περιεχόμενο
GET /v1/meta

Usage notes

Δοκιμάστε το ζωντανά

10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.

Προσαρμοσμένες κεφαλίδες (προαιρετικά)
api.oanor.com/lorem-api

Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.

Λάβετε ένα κλειδί API

Αποσπάσματα κώδικα

curl "https://api.oanor.com/lorem-api/v1/meta" \
  -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/lorem-api/v1/meta", {
  headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/lorem-api/v1/meta");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
    "https://api.oanor.com/lorem-api/v1/meta",
    headers={"x-oanor-key": "oanor_test_..."}
)

Παράδειγμα απόκρισης

Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.

{
    "data": {
        "note": "Classic Lorem Ipsum placeholder text. /v1/paragraphs?count=3&format=text|html (start_lorem=true begins with the canonical 'Lorem ipsum dolor…'); /v1/sentences?count=5; /v1/words?count=25; /v1/list?count=5&format=text|html (bullet items); /v1/bytes?count=200 (exact byte length). Generated locally — fast and always available.",
        "source": "local Lorem Ipsum generator",
        "endpoints": [
            "/v1/paragraphs",
            "/v1/sentences",
            "/v1/words",
            "/v1/list",
            "/v1/bytes",
            "/v1/meta"
        ]
    },
    "meta": {
        "timestamp": "2026-06-01T00:04:24.316Z",
        "request_id": "a1d2fd8f-5485-4749-83d9-43963d17af5f"
    },
    "status": "ok",
    "message": "Meta retrieved",
    "success": true
}