List tagged posts
GET
https://app-dev.jollor.com/api/public/v1/projects/{project_id}/posts/mentions
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request GET 'https://app-dev.jollor.com/api/public/v1/projects/<your project_id>/posts/mentions?page=1&limit=2' \
--header 'Content-Type: application/json'
Response Response Example
[
{
"id": "6543573bfbb26a229ba08c9d",
"provider": "twitter",
"is_incoming": true,
"_links": {
"self": {
"href": "/public/v1/posts/6543573bfbb26a229ba08c9d"
}
}
},
{
"id": "6543573bfbb26a229ba08c9e",
"provider": "twitter",
"is_incoming": true,
"_links": {
"self": {
"href": "/public/v1/posts/6543573bfbb26a229ba08c9e"
}
}
},
{
"id": "6543573bfbb26a229ba08c9c",
"provider": "twitter",
"is_incoming": true,
"_links": {
"self": {
"href": "/public/v1/posts/6543573bfbb26a229ba08c9c"
}
}
}
]
Request
Path Params
project_id
string
required
Example:
{{project_id}}
Query Params
page
string
required
Example:
1
limit
string
required
Example:
2
Header Params
Content-Type
string
required
Example:
application/json
Responses
Modified at 2024-03-12 09:26:44