Get a post
Get a post.
Path Parameters
postId string required
The id of the post.
Responses
- 200
- 403
- 404
- 422
- 500
Request has been handled successfully.
application/json
Schema
Example (from schema)
Schema
success boolean
data object
{
"success": true,
"data": {
"id": 123,
"body": "This is a reflection example!",
"likes": 5,
"isPrivate": false,
"publishedAt": "March 03, 2023 05:45",
"createdAt": "March 03, 2023 05:45",
"lastUpdated": "March 03, 2023 05:45",
"author": {
"id": 135,
"username": "amer",
"firstName": "Amer",
"lastName": "Abbas",
"displayName": "A Abbas",
"verified": true,
"profileImage": "//s3.amazonaws.com/qreflect-bucket/events/banner/en/avatars/15514/medium.png?1655384045",
"followed": true
},
"language": "ENGLISH",
"liked": false,
"saved": false,
"verified": false,
"hidden": false,
"views": 5,
"global": false,
"editable": false,
"deletable": false,
"reportable": false,
"restorable": false,
"comments": [
{
"id": 135,
"createdAt": "2018-06-27T14:49:10.000Z",
"hidden": false,
"body": "Ma shaa Allah Lahawla walaquwata illa billah",
"parentId": 135,
"author": {
"id": 135,
"username": "amer",
"firstName": "Amer",
"lastName": "Abbas",
"displayName": "A Abbas",
"verified": true,
"profileImage": "//s3.amazonaws.com/qreflect-bucket/events/banner/en/avatars/15514/medium.png?1655384045",
"followed": true
}
}
],
"commentsCount": 5,
"publicCommentsCount": 5,
"roomId": 123,
"group": "Muslim American Society",
"groupLink": "Muslim American Society",
"postTitle": "Osama Sayed's Reflection on Surah Al-Aadiyaat:8",
"references": [
{
"surahId": 2
},
{
"surahId": 5,
"fromAyah": 6,
"toAyah": 8
},
{
"surahId": 114,
"fromAyah": 2,
"toAyah": 2
}
],
"tags": [
{
"id": 1698,
"name": "PodTafseer",
"language": "ENGLISH"
}
],
"roomPostStatus": "as_room",
"estimatedReadingTime": 55018.9
}
}
Forbidden error. Can either be due to access token not being passed, having been expired or the caller trying to access a resource without enough permissions.
application/json
Schema
Example (from schema)
Schema
success boolean
error object
{
"success": false,
"error": {
"code": "ForbiddenError",
"message": "Token expired"
}
}
Not Found. The resource being accessed does not exist.
application/json
Schema
Example (from schema)
Schema
success boolean
error object
{
"success": false,
"error": {
"code": "NotFoundError",
"message": "The resource you're looking for does not exist"
}
}
Validation Error. The request includes one or more invalid params. Please check the request params and try again.
application/json
Schema
Example (from schema)
Schema
success boolean
error object
{
"success": false,
"error": {
"code": "ValidationError",
"message": "`id` is required"
}
}
Server Error. Something went wrong, try again later.
application/json
Schema
Example (from schema)
Schema
success boolean
error object
{
"success": false,
"error": {
"code": "ServerError",
"message": "Something went wrong"
}
}
GET /v1/posts/:postId
Authorization
name: o_t_htype: apiKeyin: header
Request
Request
curl / cURL
curl -L -X GET 'https://auth.quran.com/v1/posts/:postId' \
-H 'Accept: application/json' \
-H 'o_t_h: <API_KEY_VALUE>'
python / requests
curl -L -X GET 'https://auth.quran.com/v1/posts/:postId' \
-H 'Accept: application/json' \
-H 'o_t_h: <API_KEY_VALUE>'
go / native
curl -L -X GET 'https://auth.quran.com/v1/posts/:postId' \
-H 'Accept: application/json' \
-H 'o_t_h: <API_KEY_VALUE>'
nodejs / axios
curl -L -X GET 'https://auth.quran.com/v1/posts/:postId' \
-H 'Accept: application/json' \
-H 'o_t_h: <API_KEY_VALUE>'
ruby / Net::HTTP
curl -L -X GET 'https://auth.quran.com/v1/posts/:postId' \
-H 'Accept: application/json' \
-H 'o_t_h: <API_KEY_VALUE>'
csharp / RestSharp
curl -L -X GET 'https://auth.quran.com/v1/posts/:postId' \
-H 'Accept: application/json' \
-H 'o_t_h: <API_KEY_VALUE>'
php / cURL
curl -L -X GET 'https://auth.quran.com/v1/posts/:postId' \
-H 'Accept: application/json' \
-H 'o_t_h: <API_KEY_VALUE>'
java / OkHttp
curl -L -X GET 'https://auth.quran.com/v1/posts/:postId' \
-H 'Accept: application/json' \
-H 'o_t_h: <API_KEY_VALUE>'
powershell / RestMethod
curl -L -X GET 'https://auth.quran.com/v1/posts/:postId' \
-H 'Accept: application/json' \
-H 'o_t_h: <API_KEY_VALUE>'