/v1/meta
Spec
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/cellref-api/v1/meta" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/cellref-api/v1/meta", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/cellref-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/cellref-api/v1/meta",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"name": "Cell Reference API",
"notes": "Columns A–ZZZ (1–18278); rows 1–1048576 (the Excel maximum). Absolute markers ($) are accepted and ignored. Nothing is stored.",
"version": "v1",
"endpoints": [
{
"path": "/v1/parse",
"params": {
"cell": "an A1 reference, e.g. AA10 (required)"
},
"returns": "column letter + number, row, R1C1 form"
},
{
"path": "/v1/to-a1",
"params": {
"row": "1-based row (required)",
"column": "letter or number (required)"
},
"returns": "the A1 and R1C1 references"
},
{
"path": "/v1/column",
"params": {
"column": "a letter (AA) or a number (27) (required)"
},
"returns": "the other form"
},
{
"path": "/v1/meta",
"params": [],
"returns": "this document"
}
],
"description": "Spreadsheet cell-reference maths for Excel, Google Sheets and CSV tooling — convert between A1 and R1C1 notation and between column letters and numbers. Pure local, no key."
},
"meta": {
"timestamp": "2026-06-03T01:09:50.845Z",
"request_id": "f6414d78-0feb-4667-9ed6-9bf1acdcbd4d"
},
"status": "ok",
"message": "Meta",
"success": true
}