action instagram_get_media_shortcode_shortcode { label: "Get information about a media object." description: "This endpoint returns the same response as `GET /media/{media-id}`.\n\nA media object's shortcode can be found in its shortlink URL. An example shortlink is\n`http://instagram.com/p/D/`, its corresponding shortcode is `D`.\n" provider: instagram method: GET path: "/media/shortcode/{shortcode}" encoding: json input: { type: "object" properties: { shortcode: { type: "string" } } required: ["shortcode"] additionalProperties: false } output: { type: "object" additionalProperties: true } }