Try the API with a demo account. Sign up free to connect your own Instagram.

API Playground

Test the Feedframer API with an interactive request builder

Demo Account

@acme_coffee_house
Demo

Filters & Options

Sorting & Pagination

Premium

Free tier: 6 posts max. Sign up & upgrade for 100 posts + responsive images.

Request URL

https://feedframer.com/api/v1/me?api_key=0be49d1556cddec5ae5e263ad7f23cecf9c21b2a9321c44977fc77940c23af8a&sort=-published_at&page%5Bsize%5D=6

Response

Click "Send Request" to see the response

Code Examples

// Using fetch API
fetch('https://feedframer.com/api/v1/me?api_key=0be49d1556cddec5ae5e263ad7f23cecf9c21b2a9321c44977fc77940c23af8a&sort=-published_at&page%5Bsize%5D=6')
  .then(response => response.json())
  .then(data => console.log(data))
  .catch(error => console.error('Error:', error));

// Using async/await
async function fetchPosts() {
  try {
    const response = await fetch('https://feedframer.com/api/v1/me?api_key=0be49d1556cddec5ae5e263ad7f23cecf9c21b2a9321c44977fc77940c23af8a&sort=-published_at&page%5Bsize%5D=6');
    const data = await response.json();
    console.log(data);
  } catch (error) {
    console.error('Error:', error);
  }
}