Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/stefanbohacek/fediverse-info
https://github.com/stefanbohacek/fediverse-info
calckey fediverse mastodon misskey node-info
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/stefanbohacek/fediverse-info
- Owner: stefanbohacek
- License: mit
- Created: 2023-05-16T15:57:37.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-31T01:15:45.000Z (6 months ago)
- Last Synced: 2024-07-31T20:39:49.520Z (6 months ago)
- Topics: calckey, fediverse, mastodon, misskey, node-info
- Language: JavaScript
- Homepage: https://stefanbohacek.com/blog/making-fediverse-apps-for-everyone/
- Size: 339 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Fediverse info services
Currently available endpoints:
**/node-info**
Example: `/node-info?domain=mastodon.social`
Response:
```json
{
"domain": "mastodon.social",
"software": {
"name": "mastodon",
"version": "4.1.2+nightly-20230523"
}
}
```Additional optional parameters
- `full=true`: get the full node info object
- `onlysoftware=true`: look up the software name only using data exported from [demo.fedilist.com](http://demo.fedilist.com/) (see the `data/software.json` file)## Development
```sh
npm install
npm run dev
```