/v1/list
List media types
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/mimetypes-api/v1/list" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/mimetypes-api/v1/list", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/mimetypes-api/v1/list");
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/mimetypes-api/v1/list",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 13,
"total": 13,
"types": [
"application/x-cocoa",
"application/x-java-archive-diff",
"application/x-makeself",
"application/x-perl",
"application/x-pilot",
"application/x-redhat-package-manager",
"application/x-sea",
"audio/x-m4a",
"audio/x-realaudio",
"image/x-jng",
"image/x-ms-bmp",
"text/mathml",
"text/x-component"
],
"source": "nginx"
},
"meta": {
"timestamp": "2026-06-08T18:25:15.108Z",
"request_id": "95d369e2-b87c-4664-a51b-c17656393257"
},
"status": "ok",
"message": "Types listed successfully",
"success": true
}