Skip to main content
GET
/
api
/
v1
/
follow
/
status
/
{user_id}
curl --request GET \
    --url http://localhost:8000/api/v1/follow/status/123e4567-e89b-12d3-a456-426614174000 \
    --header "Authorization: Bearer <your_access_token>" \
    | jq
{
  "is_following": true,
  "is_followed_by": true,
  "is_mutual": false
}
curl --request GET \
    --url http://localhost:8000/api/v1/follow/status/123e4567-e89b-12d3-a456-426614174000 \
    --header "Authorization: Bearer <your_access_token>" \
    | jq

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

user_id
string<uuid>
required

Response

Successful Response

Schema for follow relationship status.

is_following
boolean
required
is_followed_by
boolean
required
is_mutual
boolean
default:false