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
Request URL
https://feedframer.com/api/v1/me?api_key=0be49d1556cddec5ae5e263ad7f23cecf9c21b2a9321c44977fc77940c23af8a&sort=-published_at&page%5Bsize%5D=6Response
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);
}
}<?php
// Using cURL
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, 'https://feedframer.com/api/v1/me?api_key=0be49d1556cddec5ae5e263ad7f23cecf9c21b2a9321c44977fc77940c23af8a&sort=-published_at&page%5Bsize%5D=6');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);
$data = json_decode($response, true);
print_r($data);
// Using file_get_contents
$response = file_get_contents('https://feedframer.com/api/v1/me?api_key=0be49d1556cddec5ae5e263ad7f23cecf9c21b2a9321c44977fc77940c23af8a&sort=-published_at&page%5Bsize%5D=6');
$data = json_decode($response, true);
print_r($data);# Simple GET request
curl 'https://feedframer.com/api/v1/me?api_key=0be49d1556cddec5ae5e263ad7f23cecf9c21b2a9321c44977fc77940c23af8a&sort=-published_at&page%5Bsize%5D=6'
# With formatted output
curl 'https://feedframer.com/api/v1/me?api_key=0be49d1556cddec5ae5e263ad7f23cecf9c21b2a9321c44977fc77940c23af8a&sort=-published_at&page%5Bsize%5D=6' | jq
# Save to file
curl 'https://feedframer.com/api/v1/me?api_key=0be49d1556cddec5ae5e263ad7f23cecf9c21b2a9321c44977fc77940c23af8a&sort=-published_at&page%5Bsize%5D=6' -o posts.json# Using requests library
import requests
response = requests.get('https://feedframer.com/api/v1/me?api_key=0be49d1556cddec5ae5e263ad7f23cecf9c21b2a9321c44977fc77940c23af8a&sort=-published_at&page%5Bsize%5D=6')
data = response.json()
print(data)
# With error handling
import requests
try:
response = requests.get('https://feedframer.com/api/v1/me?api_key=0be49d1556cddec5ae5e263ad7f23cecf9c21b2a9321c44977fc77940c23af8a&sort=-published_at&page%5Bsize%5D=6')
response.raise_for_status()
data = response.json()
print(data)
except requests.exceptions.RequestException as e:
print(f"Error: {e}")