Search Instagram Reels by keyword with optional date filters and page-based pagination.
Endpoint
/v1/instagram/search/reels
Query
Search query text for Instagram Reels.
Optional filter for when matching reels were posted.
1-based results page number. Omit to request the first page. Pagination is page-based.
const response = await fetch( "https://api.socialfetch.dev/v1/instagram/search/reels?query=dogs", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);