Integrate Tareno with your automation workflows using our REST API. Compatible with N8N, Make (Integromat), Zapier, and custom applications.
All API requests require an API key passed in the header:
X-Tareno-API-Key: your-api-key-here
Get your API key from Dashboard → Settings → API Keys
https://tareno.co/api/external
/accountsRetrieve all connected social media accounts.
{
"accounts": [
{
"id": "uuid-here",
"platform": "instagram",
"username": "yourhandle",
"displayName": "Your Name",
"profilePicture": "https://..."
}
]
}/publishPublish or schedule a post to social media.
{
"accountId": "uuid-of-account",
"text": "Your post caption",
"mediaUrls": ["https://example.com/image.jpg"],
"scheduledAt": "2026-01-15T10:00:00Z", // Optional
"timezone": "Europe/Berlin", // Optional
"metadata": {
"format": "post", // post, story, reel
"pinterestBoard": "board-id" // For Pinterest
}
}{
"success": true,
"postId": "tareno-post-id",
"platformPostId": "platform-specific-id",
"status": "published",
"platform": "instagram"
}{
"success": true,
"postId": "tareno-post-id",
"status": "scheduled",
"scheduledAt": "2026-01-15T10:00:00Z",
"timezone": "Europe/Berlin",
"platform": "instagram"
}/mediaUpload media to your Tareno library.
{
"mediaUrl": "https://example.com/image.jpg",
"fileName": "my-image.jpg"
}Send as multipart/form-data or binary with headers:
Content-Type: application/octet-stream X-File-Name: my-video.mp4 X-Content-Type: video/mp4
/mediaList all media in your library.
{
"assets": [
{
"id": "asset-uuid",
"name": "image.jpg",
"url": "https://storage.tareno.co/...",
"type": "image/jpeg",
"size": 125000,
"createdAt": "2026-01-04T00:00:00Z"
}
]
}{
"error": "Error message here",
"details": "Additional details",
"platform": "instagram"
}| Code | Meaning |
|---|---|
| 400 | Bad Request - Invalid parameters |
| 401 | Unauthorized - Invalid or missing API key |
| 403 | Forbidden - API key lacks required scope |
| 404 | Not Found - Account or resource not found |
| 429 | Too Many Requests - Rate limit exceeded |
| 500 | Server Error - Please contact support |
| Plan | Monthly API Calls |
|---|---|
| Free | 50 |
| Starter | 500 |
| Pro | 2,000 |
| Business | 10,000 |