/v1/analyze
Analyze a matrix
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/matrix-api/v1/analyze" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/matrix-api/v1/analyze", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/matrix-api/v1/analyze");
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/matrix-api/v1/analyze",
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": {
"rank": 2,
"trace": 5,
"square": true,
"inverse": [
[
-2,
1
],
[
1.5,
-0.5
]
],
"symmetric": false,
"transpose": [
[
1,
3
],
[
2,
4
]
],
"dimensions": {
"cols": 2,
"rows": 2
},
"invertible": true,
"determinant": -2
},
"meta": {
"timestamp": "2026-06-03T17:42:15.455Z",
"request_id": "f23e9296-abe8-46c9-a78a-356bcf5aa975"
},
"status": "ok",
"message": "Analyze matrix",
"success": true
}