Connect and start fetching in minutes
Enterprise-grade infrastructure
We handle Instagram's token rotation
From signup to fetching posts in under 5 minutes
One-click OAuth connection. We handle all the token management and refreshes automatically.
Generate your unique API key from the dashboard. Each key is secure and can be rotated anytime.
Make simple GET requests to fetch your Instagram posts. No complex Graph API setup required.
JavaScript/Node.js
const response = await fetch(
'https://socialport.app/api/public/posts/USER_ID',
{
headers: {
'x-api-key': 'your_api_key'
}
}
);
const { data } = await response.json();
console.log(data); // Your Instagram postsResponse
{
"data": [
{
"id": "123456",
"caption": "Amazing sunset! 🌅",
"media_type": "IMAGE",
"media_url": "https://...",
"permalink": "https://instagram.com/p/...",
"timestamp": "2024-01-15T10:30:00Z"
}
]
}One plan with everything you need
Everything you need to know about SocialPort API