Get Media by media key
GET
/
2
/
media
/
{media_key}
Get Media by media key
curl --request GET \
--url https://api.x.com/2/media/{media_key} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.x.com/2/media/{media_key}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.x.com/2/media/{media_key}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.x.com/2/media/{media_key}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.x.com/2/media/{media_key}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.x.com/2/media/{media_key}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.x.com/2/media/{media_key}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"alt_text": "<string>",
"duration_ms": 123,
"height": 123,
"media_key": "<string>",
"non_public_metrics": {
"playback_0_count": 123,
"playback_100_count": 123,
"playback_25_count": 123,
"playback_50_count": 123,
"playback_75_count": 123
},
"organic_metrics": {
"playback_0_count": 123,
"playback_100_count": 123,
"playback_25_count": 123,
"playback_50_count": 123,
"playback_75_count": 123,
"view_count": 123
},
"preview_image_url": "<string>",
"promoted_metrics": {
"playback_0_count": 123,
"playback_100_count": 123,
"playback_25_count": 123,
"playback_50_count": 123,
"playback_75_count": 123,
"view_count": 123
},
"public_metrics": {
"view_count": 123
},
"type": "<string>",
"url": "<string>",
"variants": [
{
"bit_rate": 123,
"content_type": "<string>",
"url": "<string>"
}
],
"width": 123
},
"errors": [
{
"detail": "<string>",
"resource_type": "<string>",
"title": "<string>",
"type": "https://api.x.com/2/problems/resource-not-found",
"parameter": "<string>",
"resource_id": "<string>",
"status": 123,
"value": "<string>"
}
]
}{
"code": 123,
"message": "<string>"
}Authorizations
OAuth2UserTokenUserTokenBearerToken
The access token received from the authorization server in the OAuth 2.0 flow.
Path Parameters
Pattern:
^([0-9]+)_([0-9]+)$Query Parameters
A comma separated list of Media fields to display. The fields available for a Media object.
Minimum array length:
1Available options:
alt_text, duration_ms, height, media_key, non_public_metrics, organic_metrics, preview_image_url, promoted_metrics, public_metrics, type, url, variants, width ⌘I
Get Media by media key
curl --request GET \
--url https://api.x.com/2/media/{media_key} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.x.com/2/media/{media_key}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.x.com/2/media/{media_key}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.x.com/2/media/{media_key}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.x.com/2/media/{media_key}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.x.com/2/media/{media_key}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.x.com/2/media/{media_key}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"alt_text": "<string>",
"duration_ms": 123,
"height": 123,
"media_key": "<string>",
"non_public_metrics": {
"playback_0_count": 123,
"playback_100_count": 123,
"playback_25_count": 123,
"playback_50_count": 123,
"playback_75_count": 123
},
"organic_metrics": {
"playback_0_count": 123,
"playback_100_count": 123,
"playback_25_count": 123,
"playback_50_count": 123,
"playback_75_count": 123,
"view_count": 123
},
"preview_image_url": "<string>",
"promoted_metrics": {
"playback_0_count": 123,
"playback_100_count": 123,
"playback_25_count": 123,
"playback_50_count": 123,
"playback_75_count": 123,
"view_count": 123
},
"public_metrics": {
"view_count": 123
},
"type": "<string>",
"url": "<string>",
"variants": [
{
"bit_rate": 123,
"content_type": "<string>",
"url": "<string>"
}
],
"width": 123
},
"errors": [
{
"detail": "<string>",
"resource_type": "<string>",
"title": "<string>",
"type": "https://api.x.com/2/problems/resource-not-found",
"parameter": "<string>",
"resource_id": "<string>",
"status": 123,
"value": "<string>"
}
]
}{
"code": 123,
"message": "<string>"
}