Loading...
Please wait while we prepare your content
Loading...
Please wait while we prepare your content
Build powerful integrations with our comprehensive API. Schedule posts, manage accounts, and access analytics programmatically.
Simple, intuitive REST endpoints for all your social media scheduling needs
Detailed guides, examples, and best practices for every endpoint
Secure authentication with API keys and OAuth 2.0 support
Fast, reliable API with 99.9% uptime and rate limiting
// Create a new post
const response = await fetch('https://api.so-me.studio/v1/posts', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
content: 'Hello from the API!',
platforms: ['twitter', 'facebook'],
scheduledAt: '2024-12-31T12:00:00Z'
})
});
const data = await response.json();
console.debug(data);