2019-12-10 04:36:52 +01:00
|
|
|
# Mastodon API
|
|
|
|
|
|
|
|
* [Home](help)
|
|
|
|
* [Using the APIs](help/api)
|
|
|
|
|
|
|
|
## Overview
|
|
|
|
|
|
|
|
Friendica provides the following endpoints defined in [the official Mastodon API reference](https://docs.joinmastodon.org/api/).
|
|
|
|
|
|
|
|
Authentication is the same as described in [Using the APIs](help/api#Authentication).
|
|
|
|
|
|
|
|
## Entities
|
|
|
|
|
2019-12-21 14:24:24 +01:00
|
|
|
These endpoints use the [Mastodon API entities](https://docs.joinmastodon.org/entities/).
|
2019-12-10 04:36:52 +01:00
|
|
|
|
|
|
|
## Implemented endpoints
|
|
|
|
|
2019-12-21 14:24:24 +01:00
|
|
|
- [GET /api/v1/follow_requests](https://docs.joinmastodon.org/methods/accounts/follow_requests#pending-follows)
|
|
|
|
- [POST /api/v1/follow_requests/:id/authorize](https://docs.joinmastodon.org/methods/accounts/follow_requests#accept-follow)
|
|
|
|
- Returns a [Relationship](https://docs.joinmastodon.org/entities/relationship) object.
|
|
|
|
- [POST /api/v1/follow_requests/:id/reject](https://docs.joinmastodon.org/methods/accounts/follow_requests#reject-follow)
|
|
|
|
- Returns a [Relationship](https://docs.joinmastodon.org/entities/relationship) object.
|
2019-12-11 09:50:09 +01:00
|
|
|
- POST /api/v1/follow_requests/:id/ignore
|
|
|
|
- Friendica-specific, hides the follow request from the list and prevents the remote contact from retrying.
|
2019-12-21 14:24:24 +01:00
|
|
|
- Returns a [Relationship](https://docs.joinmastodon.org/entities/relationship) object.
|
2019-12-11 09:50:09 +01:00
|
|
|
|
|
|
|
|
2019-12-21 14:24:24 +01:00
|
|
|
- [GET /api/v1/instance](https://docs.joinmastodon.org/methods/instance#fetch-instance)
|
2019-12-10 22:27:09 +01:00
|
|
|
- GET /api/v1/instance/peers - undocumented, but implemented by Mastodon and Pleroma
|
2019-12-10 04:36:52 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2019-12-11 09:50:09 +01:00
|
|
|
## Non-implemented endpoints
|