API ReferenceapifollowsGET /v1/follows/check

GET /v1/follows/check

Service: follows · operationId: (none)

Required scopes

(no scope declared — review service config)

Query parameters

  • follower_id (string) required
  • followee_id (string) required
  • brand_id (string) required

Responses

200 Follow check result

{
  "type": "object",
  "properties": {
    "following": {
      "type": "boolean"
    }
  },
  "required": [
    "following"
  ]
}

Example

curl -X GET https://follows.platform.loop.health/v1/follows/check \
  -H "Authorization: Bearer $ACCESS_TOKEN"