RESTful API
Atria API
Build custom integrations and workflows with our RESTful API. Access advertising analytics programmatically.
What you can do with the API
Campaign Data
Retrieve campaign performance metrics across all connected platforms
Product Discovery
Search and filter trending products with advanced query parameters
Creative Analytics
Access creative performance scores, engagement metrics, and recommendations
Reporting
Generate and export custom reports programmatically
Quick Start
Get up and running with the Atria API in minutes. Here is a simple example to fetch your campaign data.
GETRequest
curl -X GET https://api.atriashop.me/v1/campaigns \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
200Response
{ "data": [ { "id": "camp_8f2k4j1", "name": "Summer Collection - TikTok", "platform": "tiktok_ads", "spend": 1250.00, "impressions": 284500, "clicks": 4320, "conversions": 187, "roas": 3.42 } ], "meta": { "total": 24, "page": 1, "per_page": 10 } }