/v1/meta
Spec
Essayez-le en direct
10 appels gratuits par jour — sans inscription, sans clé API. Passe par la passerelle oanor.
Ça marche. Récupérez une clé API et utilisez-la dans votre projet.
Obtenez une clé APIExtraits de code
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_..."}
)
Exemple de réponse
Une réponse réelle de ce endpoint, capturée lors du dernier contrôle de santé.
{
"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
}