cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/instagram/shortcode_to_media_id?shortcode=DRhvwVLAHAG' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/instagram/shortcode_to_media_id',
params={"shortcode": "DRhvwVLAHAG"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"shortcode": "DRhvwVLAHAG"});
const response = await fetch(`https://api.keyapi.ai/v1/instagram/shortcode_to_media_id?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"status": true,
"shortcode": "DRhvwVLAHAG",
"media_id": "3774507992167247878"
},
"requestId": "08f4e902-e360-43ac-8513-47f9d9ee9b4d"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}Instagram User
Convert shortcode to media ID
Convert the shortcode of an Instagram post to a media ID. The shortcode is the unique identifier in the post URL, e.g., DRhvwVLAHAG in instagram.com/p/DRhvwVLAHAG/
GET
/
v1
/
instagram
/
shortcode_to_media_id
cURL
curl --request GET \
--url 'https://api.keyapi.ai/v1/instagram/shortcode_to_media_id?shortcode=DRhvwVLAHAG' \
--header 'Authorization: Bearer <YOUR_API_KEY>'import requests
response = requests.get(
'https://api.keyapi.ai/v1/instagram/shortcode_to_media_id',
params={"shortcode": "DRhvwVLAHAG"},
headers={'Authorization': 'Bearer <YOUR_API_KEY>'}
)
print(response.json())const params = new URLSearchParams({"shortcode": "DRhvwVLAHAG"});
const response = await fetch(`https://api.keyapi.ai/v1/instagram/shortcode_to_media_id?${params}`, {
method: 'GET',
headers: { 'Authorization': 'Bearer <YOUR_API_KEY>' }
});
const data = await response.json();
console.log(data);{
"code": 0,
"message": "success",
"data": {
"status": true,
"shortcode": "DRhvwVLAHAG",
"media_id": "3774507992167247878"
},
"requestId": "08f4e902-e360-43ac-8513-47f9d9ee9b4d"
}{
"code": 400,
"data": null,
"message": "Missing required parameter: handle"
}{
"code": 401,
"data": null,
"message": "apiKey is null"
}{
"code": 402,
"data": null,
"message": "apiKey quota is not enough"
}{
"code": 429,
"data": null,
"message": "qps limit exceeded"
}{
"code": 500,
"data": null,
"message": "Internal server error"
}🪙2 creditsper request
Copy for AI
🤖 Why Code When AI Can Do It For You?
Stop writing code like it’s 1970! Let AI do the heavy lifting - click the sparkles to copy a perfectly formatted prompt for ChatGPT, Claude, or your favorite AI assistant.

