Get posts
Get list of posts.
Query Parameters
Get posts of an exact Ayah only and not of range of Ayahs (the default behavior).
Comma-separated language iso codes, to fetch posts in a specific language(s).
Include posts of scholars
The Ids of the authors of the posts
Include posts of students of knowledge
Include verified posts
Include approved posts
Get posts that are updated after the given date (inclusive).
Further customize the results, you can fetch posts of specific members, post that have specific tags, post for specific surah, ayah range or single ayah etc.
Possible values: [newest
, following
, draft
, favorite
, most_popular
, only_room_members
, public
, feed
]
Default value: most_popular
newest
= Recent posts will be at the top.
following
= Get posts of authors the current user is following.
draft
= Get current user's private posts.
favorite
= Get current user's favorite posts.
most_popular
= Get most popular posts.
only_room_members
= Get posts that are posted by current room members.
public
= Include public posts of private rooms.
feed
= When passed, this will ignore most passed filters and send verified
posts (if verified
= true
), posts by scholars and student of knowledge, verified posts, posts from author the user is following.
Include only trusted posts and posts by author the user is following.
The current post page. Each page will have 25 posts by default. pages
response field will have the total number of pages.
- 200
- 400
- 401
- 403
- 404
- 422
- 429
- 500
- 502
- 503
- 504
Request has been handled successfully.
Schema
data object
{
"success": true,
"data": {
"posts": [
{
"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
}
],
"pages": 0
}
}
The request is missing required parameters or is invalid.
Schema
{
"message": "The request is missing required headers or is invalid",
"type": "invalid_request",
"success": false
}
The request is unauthorized.
Schema
{
"message": "The request requires user authentication",
"type": "unauthorized",
"success": false
}
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.
Schema
{
"message": "The server understood the request, but refuses to authorize it",
"type": "forbidden",
"success": false
}
Not Found. The resource being accessed does not exist.
Schema
{
"message": "The requested resource could not be found",
"type": "not_found",
"success": false
}
Validation Error. The request includes one or more invalid params. Please check the request params and try again.
Schema
{
"message": "The request was well-formed but was unable to be followed due to semantic errors",
"type": "unprocessable_entity",
"success": false
}
Too many requests, please try again later.
Schema
{
"message": "Too many requests, please try again later",
"type": "rate_limit_exceeded",
"success": false
}
Server Error. Something went wrong, try again later.
Schema
{
"message": "The server encountered an internal error and was unable to complete your request",
"type": "internal_server_error",
"success": false
}
Invalid response from the upstream server
Schema
{
"message": "The server was acting as a gateway or proxy and received an invalid response from the upstream server",
"type": "bad_gateway",
"success": false
}
The server is currently unable to handle the request due to a temporary overload or scheduled maintenance
Schema
{
"message": "The server is currently unable to handle the request due to a temporary overload or scheduled maintenance",
"type": "service_unavailable",
"success": false
}
The server did not receive a timely response from the upstream server.
Schema
{
"message": "The server was acting as a gateway or proxy and did not receive a timely response from the upstream server",
"type": "gateway_timeout",
"success": false
}
GET /v1/posts/
Authorization
name: x-auth-tokentype: apiKeyin: headerdescription: The JWT access token required for accessing the endpoints.
name: x-client-idtype: apiKeyin: headerdescription: Your client id
Request
Request
curl -L -X GET 'https://apis-prelive.quran.foundation/auth/v1/posts/' \
-H 'Accept: application/json' \
-H 'x-auth-token: <API_KEY_VALUE>' \
-H 'x-client-id: <API_KEY_VALUE>'
curl -L -X GET 'https://apis-prelive.quran.foundation/auth/v1/posts/' \
-H 'Accept: application/json' \
-H 'x-auth-token: <API_KEY_VALUE>' \
-H 'x-client-id: <API_KEY_VALUE>'
curl -L -X GET 'https://apis-prelive.quran.foundation/auth/v1/posts/' \
-H 'Accept: application/json' \
-H 'x-auth-token: <API_KEY_VALUE>' \
-H 'x-client-id: <API_KEY_VALUE>'
curl -L -X GET 'https://apis-prelive.quran.foundation/auth/v1/posts/' \
-H 'Accept: application/json' \
-H 'x-auth-token: <API_KEY_VALUE>' \
-H 'x-client-id: <API_KEY_VALUE>'
curl -L -X GET 'https://apis-prelive.quran.foundation/auth/v1/posts/' \
-H 'Accept: application/json' \
-H 'x-auth-token: <API_KEY_VALUE>' \
-H 'x-client-id: <API_KEY_VALUE>'
curl -L -X GET 'https://apis-prelive.quran.foundation/auth/v1/posts/' \
-H 'Accept: application/json' \
-H 'x-auth-token: <API_KEY_VALUE>' \
-H 'x-client-id: <API_KEY_VALUE>'
curl -L -X GET 'https://apis-prelive.quran.foundation/auth/v1/posts/' \
-H 'Accept: application/json' \
-H 'x-auth-token: <API_KEY_VALUE>' \
-H 'x-client-id: <API_KEY_VALUE>'
curl -L -X GET 'https://apis-prelive.quran.foundation/auth/v1/posts/' \
-H 'Accept: application/json' \
-H 'x-auth-token: <API_KEY_VALUE>' \
-H 'x-client-id: <API_KEY_VALUE>'
curl -L -X GET 'https://apis-prelive.quran.foundation/auth/v1/posts/' \
-H 'Accept: application/json' \
-H 'x-auth-token: <API_KEY_VALUE>' \
-H 'x-client-id: <API_KEY_VALUE>'