/v1/hashtags/media
Hashtag media
Latest posts tagged with a specific hashtag — captions, stats, author info.
Try it live
10 free calls per day — no sign-up, no API key. Goes through the oanor gateway.
It works. Grab an API key and use it in your project.
Get an API keyCode snippets
curl "https://api.oanor.com/tiktok-api/v1/hashtags/media" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/tiktok-api/v1/hashtags/media", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/tiktok-api/v1/hashtags/media");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/tiktok-api/v1/hashtags/media",
headers={"x-oanor-key": "oanor_test_..."}
)
Example response
A real response from this endpoint, captured by the latest health check.
{
"data": {
"count": 20,
"media": [
{
"id": "7195321149796928811",
"post_url": "https://www.tiktok.com/@setupspawn/video/7195321149796928811",
"username": "setupspawn",
"video_id": "7195321149796928811",
"matched_hashtag": "#recipe"
},
{
"id": "7419353376749604139",
"post_url": "https://www.tiktok.com/@foodinwindow/video/7419353376749604139",
"username": "foodinwindow",
"video_id": "7419353376749604139",
"matched_hashtag": "#recipe"
},
{
"id": "7490466504538852610",
"post_url": "https://www.tiktok.com/@recipe.hub1/video/7490466504538852610",
"username": "recipe.hub1",
"video_id": "7490466504538852610",
"matched_hashtag": "#recipe"
},
{
"id": "7390874644900810014",
"post_url": "https://www.tiktok.com/@thatrecipe.us/video/7390874644900810014",
"username": "thatrecipe.us",
"video_id": "7390874644900810014",
"matched_hashtag": "#recipe"
},
{
"id": "7300296189713403169",
"post_url": "https://www.tiktok.com/@recettesdefamilles/video/7300296189713403169",
"username": "recettesdefamilles",
"video_id": "7300296189713403169",
"matched_hashtag": "#recipe"
},
{
"id": "7377123064716348714",
"post_url": "https://www.tiktok.com/@setupspawn/video/7377123064716348714",
"username": "setupspawn",
"video_id": "7377123064716348714",
"matched_hashtag": "#recipe"
},
{
"id": "7475390140404256031",
"post_url": "https://www.tiktok.com/@thatrecipe.us/video/7475390140404256031",
"username": "thatrecipe.us",
"video_id": "7475390140404256031",
"matched_hashtag": "#recipe"
},
{
"id": "7508521740981570846",
"post_url": "https://www.tiktok.com/@thatrecipe.us/video/7508521740981570846",
"username": "thatrecipe.us",
"video_id": "7508521740981570846",
"matched_hashtag": "#recipe"
},
{
"id": "7509945678714375455",
"post_url": "https://www.tiktok.com/@thatrecipe.us/video/7509945678714375455",
"username": "thatrecipe.us",
"video_id": "7509945678714375455",
"matched_hashtag": "#recipe"
},
{
"id": "7489470359658384695",
"post_url": "https://www.tiktok.com/@recipeeasycook/video/7489470359658384695",
…