action instagram_get_geographies_geo_id_media_recent { label: "Get recent media from a custom geo-id." description: "Get recent media from a geography subscription that you created.\n\n**Note:** You can only access Geographies that were explicitly created by your OAuth client. Check the\nGeography Subscriptions section of the [real-time updates page](https://instagram.com/developer/realtime/).\nWhen you create a subscription to some geography that you define, you will be returned a unique `geo-id` that\ncan be used in this query. To backfill photos from the location covered by this geography, use the\n[media search endpoint](https://instagram.com/developer/endpoints/media/).\n\n**Warning:** [Deprecated](http://instagram.com/developer/changelog/) for Apps created **on or after** Nov 17, 2015\n" provider: instagram method: GET path: "/geographies/{geo-id}/media/recent" encoding: json input: { type: "object" properties: { count: { type: "string" } "geo-id": { type: "string" } min_id: { type: "string" } } required: ["geo-id"] additionalProperties: false } output: { type: "object" additionalProperties: true } }