Properties
| Name | Type | Description |
|---|---|---|
| maintainerName | stringnull | |
| maintainerEmail | stringnull | |
| version | string | |
| name | stringnull | |
| shortName | stringnull | |
| uri | string | |
| description | stringnull | |
| langs | array | |
| dimensions | number | |
| tosUrl | stringnull | |
| repositoryUrl | stringnull | |
| feedbackUrl | stringnull | |
| defaultDarkTheme | stringnull | |
| defaultLightTheme | stringnull | |
| disableRegistration | boolean | |
| emailRequiredForSignup | boolean | |
| enableHcaptcha | boolean | |
| hcaptchaSiteKey | stringnull | |
| enableMcaptcha | boolean | |
| mcaptchaSiteKey | stringnull | |
| mcaptchaInstanceUrl | stringnull | |
| enableRecaptcha | boolean | |
| recaptchaSiteKey | stringnull | |
| enableTurnstile | boolean | |
| turnstileSiteKey | stringnull | |
| googleAnalyticsId | stringnull | |
| enableTestcaptcha | boolean | |
| swPublickey | stringnull | |
| mascotImageUrl | string | |
| bannerUrl | stringnull | |
| serverErrorImageUrl | stringnull | |
| infoImageUrl | stringnull | |
| notFoundImageUrl | stringnull | |
| iconUrl | stringnull | |
| maxNoteTextLength | number | |
| ads | array | |
| wellKnownWebsites | array | |
| notesPerOneAd | number | |
| enableEmail | boolean | |
| enableServiceWorker | boolean | |
| translatorAvailable | boolean | |
| sentryForFrontend | objectnull | |
| mediaProxy | string | |
| enableUrlPreview | boolean | |
| enableSkebStatus | boolean | |
| backgroundImageUrl | stringnull | |
| impressumUrl | stringnull | |
| logoImageUrl | stringnull | |
| privacyPolicyUrl | stringnull | |
| inquiryUrl | stringnull | |
| serverRules | array | |
| themeColor | stringnull | |
| policies | object | |
| noteSearchableScope | string | |
| maxFileSize | number | |
| federation | string |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://misskey.io/schemas/MetaLite",
"title": "MetaLite",
"type": "object",
"properties": {
"maintainerName": {
"type": [
"string",
"null"
]
},
"maintainerEmail": {
"type": [
"string",
"null"
]
},
"version": {
"type": "string"
},
"name": {
"type": [
"string",
"null"
]
},
"shortName": {
"type": [
"string",
"null"
]
},
"uri": {
"type": "string",
"format": "url",
"example": "https://misskey.example.com"
},
"description": {
"type": [
"string",
"null"
]
},
"langs": {
"type": "array",
"items": {
"type": "string"
}
},
"dimensions": {
"type": "number",
"minimum": 1
},
"tosUrl": {
"type": [
"string",
"null"
]
},
"repositoryUrl": {
"type": [
"string",
"null"
],
"default": "https://github.com/misskey-dev/misskey"
},
"feedbackUrl": {
"type": [
"string",
"null"
],
"default": "https://github.com/misskey-dev/misskey/issues/new"
},
"defaultDarkTheme": {
"type": [
"string",
"null"
]
},
"defaultLightTheme": {
"type": [
"string",
"null"
]
},
"disableRegistration": {
"type": "boolean"
},
"emailRequiredForSignup": {
"type": "boolean"
},
"enableHcaptcha": {
"type": "boolean"
},
"hcaptchaSiteKey": {
"type": [
"string",
"null"
]
},
"enableMcaptcha": {
"type": "boolean"
},
"mcaptchaSiteKey": {
"type": [
"string",
"null"
]
},
"mcaptchaInstanceUrl": {
"type": [
"string",
"null"
]
},
"enableRecaptcha": {
"type": "boolean"
},
"recaptchaSiteKey": {
"type": [
"string",
"null"
]
},
"enableTurnstile": {
"type": "boolean"
},
"turnstileSiteKey": {
"type": [
"string",
"null"
]
},
"googleAnalyticsId": {
"type": [
"string",
"null"
]
},
"enableTestcaptcha": {
"type": "boolean"
},
"swPublickey": {
"type": [
"string",
"null"
]
},
"mascotImageUrl": {
"type": "string",
"default": "/assets/ai.png"
},
"bannerUrl": {
"type": [
"string",
"null"
]
},
"serverErrorImageUrl": {
"type": [
"string",
"null"
]
},
"infoImageUrl": {
"type": [
"string",
"null"
]
},
"notFoundImageUrl": {
"type": [
"string",
"null"
]
},
"iconUrl": {
"type": [
"string",
"null"
]
},
"maxNoteTextLength": {
"type": "number"
},
"ads": {
"type": "array",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"format": "id",
"example": "xxxxxxxxxx"
},
"url": {
"type": "string",
"format": "url"
},
"place": {
"type": "string",
"enum": [
"square",
"horizontal",
"horizontal-big",
"vertical"
]
},
"ratio": {
"type": "number"
},
"imageUrl": {
"type": "string",
"format": "url"
},
"imageBlurhash": {
"type": [
"string",
"null"
]
},
"dayOfWeek": {
"type": "integer"
},
"isSensitive": {
"type": "boolean"
}
},
"required": [
"id",
"url",
"place",
"ratio",
"imageUrl",
"imageBlurhash",
"dayOfWeek",
"isSensitive"
]
}
},
"wellKnownWebsites": {
"type": "array",
"items": {
"type": "string"
}
},
"notesPerOneAd": {
"type": "number",
"default": 0
},
"enableEmail": {
"type": "boolean"
},
"enableServiceWorker": {
"type": "boolean"
},
"translatorAvailable": {
"type": "boolean"
},
"sentryForFrontend": {
"type": [
"object",
"null"
],
"properties": {
"options": {
"type": "object",
"properties": {
"dsn": {
"type": "string"
}
},
"additionalProperties": true,
"required": [
"dsn"
]
},
"vueIntegration": {
"type": [
"object",
"null"
],
"additionalProperties": true
},
"browserTracingIntegration": {
"type": [
"object",
"null"
],
"additionalProperties": true
},
"replayIntegration": {
"type": [
"object",
"null"
],
"additionalProperties": true
}
},
"required": [
"options"
]
},
"mediaProxy": {
"type": "string"
},
"enableUrlPreview": {
"type": "boolean"
},
"enableSkebStatus": {
"type": "boolean"
},
"backgroundImageUrl": {
"type": [
"string",
"null"
]
},
"impressumUrl": {
"type": [
"string",
"null"
]
},
"logoImageUrl": {
"type": [
"string",
"null"
]
},
"privacyPolicyUrl": {
"type": [
"string",
"null"
]
},
"inquiryUrl": {
"type": [
"string",
"null"
]
},
"serverRules": {
"type": "array",
"items": {
"type": "string"
}
},
"themeColor": {
"type": [
"string",
"null"
]
},
"policies": {
"type": "object",
"$ref": "#/components/schemas/RolePolicies"
},
"noteSearchableScope": {
"type": "string",
"enum": [
"local",
"global"
],
"default": "local"
},
"maxFileSize": {
"type": "number"
},
"federation": {
"type": "string",
"enum": [
"all",
"specified",
"none"
]
}
},
"required": [
"maintainerName",
"maintainerEmail",
"version",
"name",
"shortName",
"uri",
"description",
"langs",
"dimensions",
"tosUrl",
"repositoryUrl",
"feedbackUrl",
"defaultDarkTheme",
"defaultLightTheme",
"disableRegistration",
"emailRequiredForSignup",
"enableHcaptcha",
"hcaptchaSiteKey",
"enableMcaptcha",
"mcaptchaSiteKey",
"mcaptchaInstanceUrl",
"enableRecaptcha",
"recaptchaSiteKey",
"enableTurnstile",
"turnstileSiteKey",
"googleAnalyticsId",
"enableTestcaptcha",
"swPublickey",
"mascotImageUrl",
"bannerUrl",
"serverErrorImageUrl",
"infoImageUrl",
"notFoundImageUrl",
"iconUrl",
"maxNoteTextLength",
"ads",
"wellKnownWebsites",
"notesPerOneAd",
"enableEmail",
"enableServiceWorker",
"translatorAvailable",
"sentryForFrontend",
"mediaProxy",
"enableUrlPreview",
"enableSkebStatus",
"backgroundImageUrl",
"impressumUrl",
"logoImageUrl",
"privacyPolicyUrl",
"inquiryUrl",
"serverRules",
"themeColor",
"policies",
"noteSearchableScope",
"maxFileSize",
"federation"
]
}
Work with this as data
Every JSON Schema here is available over the APIs.io API and to AI agents over MCP.
MCP server
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
Tools for schemas
4 MCP tools reach this
find_json_schemasBrowse and filter every JSON Schema in the catalog.apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.resolveTurn a domain, URL or GitHub org into the provider it belongs to.find_cohortsEvery scored population of providers in the catalog.
Call it yourself
curl for this page
This JSON Schema
curl "https://apis.io/api/v1/json-schemas/misskey-metalite"
All schemas
curl "https://apis.io/api/v1/json-schemas?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
Get an API key
Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.
A second provider on the same verified email joins the account you already have.