dambel

دمبل

shevron
ورود | ثبت نام

API Docs / comments / index



GET /api/v1/comments

Retrieves a list of comments, with support for filtering by resource type, item, user, and content. Useful for both admin management and fetching comments for a specific profile.


Permissions

PermissionDescription
comments.viewView your own comments and comments on any public commentable
comments.view_allView all comments, including drafts, on any profile (admin only)

Query Parameters

NameTypeRequiredDescriptionExample
typestringNoThe commentable type (App\Models\Gym, App\Models\Post). Comma-separated for multiple types"App\Models\Gym,App\Models\Post"
item_idintNoID of the commentable. Comma-separated for multiple IDs"1,2,3"
user_idintNoID of the user. Comma-separated for multiple IDs"5,6"
searchstringNoSearch term for comment content"great"
orderstringNoOrder of results: ASC or DESC (default: DESC)"DESC"

Response

200 OK

Returns a paginated list of comment resources.

Schema

{
  "data": [
    { /* Comment Resource */ }
  ],
  "links": { /* Pagination Data */ },
  "meta": { /* Pagination Data */ }
}

Example

{
  "data": [
    {
      "id": 123,
      "user_id": 456,
      "commentable_type": "App\\Models\\Gyms\\Gym",
      "commentable_id": 42,
      "is_user_commentable_client": false,
      "content": "Great gym!",
      "parent_comment_id": null,
      "created_at": "2025-01-01 00:00:00",
      "updated_at": "2025-01-01 00:03:00"
    }
  ],
  "links": {
    "first": "https://api.example.com/api/v1/comments?page=1",
    "last": "https://api.example.com/api/v1/comments?page=10",
    "prev": null,
    "next": "https://api.example.com/api/v1/comments?page=2"
  },
  "meta": {
    "current_page": 1,
    "from": 1,
    "last_page": 10,
    "path": "https://api.example.com/api/v1/comments",
    "per_page": 50,
    "to": 50,
    "total": 500
  }
}

For a full schema, see Comment Resource and Pagination Data.


Error Responses

StatusDescriptionReference
401UnauthorizedAuthentication error
403Forbidden (no permission)Permission error
404Not foundNot-found error
footer wave
logo

دمبل، دنیای هوشمند ورزش و تغذیه

LinkedinInstagramXYoutube