Random MIME Type Generator

API Documentation

GET https://randomdatatool.com/api/system/mimetype

Query Parameters

ParameterTypeDescription
countintNumber of entries to return. Default: 10. Max: 1000.
to_upper_caseboolTransform the result string to uppercase.

Response JSON

{
"status": "success",
"data": [
"text/vnd.ms-mediapackage",
"application/vnd.dolby.mlp"
],
"count": 2
}

Implementation

curl -X GET "https://randomdatatool.com/api/system/mimetype?to_upper_case=true&count=10"