action instagram_get_media_media_id { label: "Get information about a media object." description: "Get information about a media object. The returned type key will allow you to differentiate between image and\nvideo media.\n\n**Note:** if you authenticate with an OAuth Token, you will receive the user_has_liked key which quickly tells\nyou whether the current user has liked this media item.\n" provider: instagram method: GET path: "/media/{media-id}" encoding: json input: { type: "object" properties: { "media-id": { type: "string" } } required: ["media-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }