Loading API docs...
Connect Reddit Ads, save account and pixel defaults, and queue conversion events through the released delivery pipeline. This page lists the required credentials, setup example, mapped endpoints, and production notes.
Base URL
https://api.trendsagi.com114
Routes
16
Guides
3
Languages
Released conversion-event delivery for Reddit Ads accounts and pixels
Connect Reddit Ads, save account and pixel defaults, and queue conversion events through the released delivery pipeline.
Install
No SDK required. Use TrendsAGI Reddit Ads integration endpoints.Required credentials
export TRENDSAGI_API_KEY="<TRENDSAGI_API_KEY>"
# 1) Request OAuth URL
curl -X GET "https://api.trendsagi.com/api/integrations/reddit-ads/auth" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY"
# 2) Complete authorization in the browser
# 3) Save account and pixel defaults
curl -X PUT "https://api.trendsagi.com/api/integrations/reddit-ads/selection" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"account_id": "acc_123",
"pixel_id": "px_123",
"event_name": "Purchase"
}'
# 4) Queue an event
curl -X POST "https://api.trendsagi.com/api/integrations/reddit-ads/push" \
-H "Authorization: Bearer $TRENDSAGI_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"event_name": "Purchase",
"data": {
"value": 129.99,
"currency": "USD"
}
}'# Save as quickstart.sh
bash quickstart.sh1. Install
Add SDK/dependency for this integration path.
2. Authenticate
Set API key and any provider-specific credentials.
3. Map Endpoints
Use mapped endpoints below to build deterministic flow.
4. Harden
Add rate-limit backoff, idempotency, and safety gates.
Endpoint Mapping
Each integration is mapped to specific API endpoints so teams can compose deterministic workflows.
Production Notes