Get a single comment.
Resource Information
| Method | GET |
|---|---|
| URL | https://public-api.wordpress.com/rest/v1.1/sites/$site/comments/$comment_ID |
| Requires authentication? | No |
Method Parameters
| Parameter | Type | Description |
|---|---|---|
| $site | (int|string) | Site ID or domain |
| $comment_ID | (int) | The comment ID |
Query Parameters
| Parameter | Type | Description |
|---|---|---|
| context | (string) |
|
| http_envelope | (bool) |
|
| pretty | (bool) |
|
| meta | (string) | Optional. Loads data from the endpoints found in the 'meta' part of the response. Comma-separated list. Example: meta=site,likes |
| fields | (string) | Optional. Returns specified fields only. Comma-separated list. Example: fields=ID,title |
| callback | (string) | An optional JSONP callback function. |
Response Parameters
| Parameter | Type | Description |
|---|---|---|
| ID | (int) | The comment ID. |
| post | (object) | A reference to the comment's post. |
| author | (object) | The author of the comment. |
| date | (iso 8601 datetime) | The comment's creation time. |
| URL | (url) | The full permalink URL to the comment. |
| short_URL | (url) | The wp.me short URL. |
| content | (html) |
context dependent. |
| raw_content | (string) | Raw comment content. |
| status | (string) |
|
| parent | (object|false) | A reference to the comment's parent, if it has one. |
| type | (string) |
|
| like_count | (int) | The number of likes for this comment. |
| i_like | (bool) | Does the current user like this comment? |
| meta | (object) | Meta data |
| can_moderate | (bool) | Whether current user can moderate the comment. |
| i_replied | (bool) | Has the current user replied to this comment? |
Resource Errors
This endpoint does not return any errors.