API Documentation

Welcome to the Tareno Developer Hub. Our API allows you to integrate powerful social media scheduling and analytics directly into your own products.


Authentication

The Tareno API uses Bearer tokens for authentication. You can generate an API Key in your dashboard settings. All requests must be made over HTTPS.

GET /v1/me HTTP/1.1
Host: api.tareno.co
Authorization: Bearer YOUR_API_KEY

Core Endpoints

POST/v1/posts

Create and schedule a new post across multiple platforms.

Parameters

  • platformsArray of platform IDs (e.g., ["instagram", "twitter"])
  • contentThe caption text for your post. Max characters vary by platform.
  • media_idsArray of UUIDs for uploaded media assets.

GET/v1/analytics

Retrieve detailed performance metrics for specific posts or overall account growth.

Rate Limits

To ensure platform stability, we enforce rate limits on API requests. Standard accounts are limited to:

  • Reads: 100 requests per minute
  • Writes: 30 requests per minute

Errors

Tareno uses standard HTTP response codes to indicate success or failure. In general, 2xx codes indicate success, 4xx codes indicate an error from the client, and 5xx codes indicate an error from our servers.

401 Unauthorized
Invalid or missing API key.
429 Too Many Requests
Rate limit exceeded.