Get a list of recently tagged media.
GET
/tags/{tag-name}/media/recent
tags
max_tag_id
and min_tag_id
parameters in the paginationresponse to paginate through these objects.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.instagram.com/v1/tags//media/recent'
Response Response Example
{
"data": [
{
"attribution": "string",
"caption": {
"created_time": "string",
"from": {
"full_name": "string",
"id": "string",
"profile_picture": "string",
"username": "string"
},
"id": "string",
"text": "string"
},
"comments": {
"count": 0,
"data": [
{
"created_time": "string",
"from": {
"full_name": "string",
"id": "string",
"profile_picture": "string",
"username": "string"
},
"id": "string",
"text": "string"
}
]
},
"created_time": "string",
"filter": "string",
"id": "string",
"images": {
"low_resolution": {
"height": 0,
"url": "string",
"width": 0
},
"standard_resolution": {
"height": 0,
"url": "string",
"width": 0
},
"thumbnail": {
"height": 0,
"url": "string",
"width": 0
}
},
"likes": {
"count": 0,
"data": [
{
"full_name": "string",
"id": "string",
"profile_picture": "string",
"username": "string"
}
]
},
"link": "string",
"location": {
"id": "string",
"latitude": 0,
"longitude": 0,
"name": "string"
},
"tags": [
"string"
],
"type": "image",
"user": {
"full_name": "string",
"id": "string",
"profile_picture": "string",
"username": "string"
},
"user_has_liked": true,
"users_in_photo": [
{
"position": {
"x": 0,
"y": 0
},
"user": {
"full_name": "string",
"id": "string",
"profile_picture": "string",
"username": "string"
}
}
],
"videos": {
"low_resolution": {
"height": 0,
"url": "string",
"width": 0
},
"standard_resolution": {
"height": 0,
"url": "string",
"width": 0
}
}
}
],
"meta": {
"code": 0
},
"pagination": {
"deprecation_warning": "string",
"min_tag_id": "string",
"next_max_id": "string",
"next_max_tag_id": "string",
"next_min_id": "string",
"next_url": "string"
}
}
Request
Path Params
tag-name
string
required
Query Params
count
integer
optional
min_tag_id
string
optional
min_tag_id
.max_tag_id
string
optional
max_tag_id
.Responses
Modified at 2023-08-15 03:55:31