Get Info
Get the basic forum installation info such as title, description, etc. This is a fully public endpoint as it drives the ability to render stuff like OpenGraph metadata, favicon, titles, descriptions, for crawlers.
Get the basic forum installation info such as title, description, etc.
This is a fully public endpoint as it drives the ability to render stuff like OpenGraph metadata, favicon, titles, descriptions, for crawlers.
curl -X GET "https://loading/api/info"{
"title": "string",
"description": "string",
"content": "string",
"accent_colour": "string",
"onboarding_status": "requires_first_account",
"authentication_mode": "handle",
"capabilities": [
"plugins"
],
"metadata": {},
"motd": {
"content": "string",
"start_at": "2019-08-24T14:15:22Z",
"end_at": "2019-08-24T14:15:22Z",
"metadata": {}
}
}{
"error": "string",
"message": "string",
"suggested": "string",
"metadata": {}
}API documentation GET
This endpoint returns the OpenAPI documentation for the Storyden API in an interactive HTML format. This is useful for developers who want to explore the API and test endpoints without writing code.
Get Session GET
Provides the instance settings and, if authenticated, the member's settings as well. This is effectively the same as calling `GetInfo` and `AccountGet` at the same time. This is a convenience endpoint to reduce round-trips for root level data needed to render a client's initial UI.