X/Twitter Ads
Promote your posts by making them into X/Twitter ads using Ayrshare's API.
Take your posts to the next level by promoting them as ads using our X/Twitter promoted Tweets API. We currently only support Twitter Promoted Tweets. Additional social networks are coming soon.
Promoting Ads via an API
Promoting a Tweet turns a Tweet into an advertising campaign via the Promote a Tweet API. You can set a budget, target demographics, and more.
In the Twitter Ads Manager you'll create a campaign and ads groups. Tweets added to a group are "promoted" and will automatically run based on the settings of the campaign and group they are contained in.
You can create up to 100 ads groups in a campaign and 200 ads in an ads groups.
After you create the campaign and at least one ads group, you can use the API to promote Tweets. Any Tweet you posted to your account can be promoted, whether it came through Ayrshare or was manually posted.
After submitting the promoted Tweet, it might be in a "pending" state. This means that Twitter is reviewing the ad. Once approved the ad will run.
Activate Ads for X/Twitter
In the Ayrshare Dashboard, go to the Social Accounts page.
Click the "Activate Ads" to enable Twitter Promoted Ads.
Choose upgrade and your account will be enabled for promoting Tweets via the API.
To deactivate ads, please contact us.
Set Up a Twitter Ads Campaign
The first step is to create a Twitter Ads campaign.
Log in to Twitter with the handle you want to manage ads.
Open the Twitter Ads Manager.
In the upper left corner click "Create Campaign".
Choose your objective from the selections and click "Next."
Complete the campaign settings, including setting a budget. The budget will be used to fund the ads. Click "Next".
Create an Ads Group, including a target audience. Click "Next".
Once done, "Launch Campaign".
Promote Tweets API
There are three key pieces of information needed to promote a Twitter tweet via the API:
Campaign ID
Group ID
Tweets IDs
/ads/twitter/campaigns
GET
https://app.ayrshare.com/api/ads/twitter/campaigns
The list of Ad campaigns associated with your Twitter account. The campaigns field id contains the campaign ID. Note: Twitter sometimes refers to the campaign as the accounts.
Headers
Name | Type | Description |
---|---|---|
Authorizations | string | Format: |
Profile-Key | string | Profile Key of a user profile. |
/ads/twitter/groups
GET
https://app.ayrshare.com/api/ads/twitter/groups
The Ad Groups are the groupings under a given Campaign. The id of an array element is the key information need for the promote Tweet. Note: Twitter sometimes refers to groups as line items.
Path Parameters
Name | Type | Description |
---|---|---|
id | string | Campaign ID |
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Format: |
Profile-Key | string | Profile Key of a user profile. |
/ads/twitter/ids
PUT
https://app.ayrshare.com/api/ads/twitter/ids
Set the "campaign" and "group" ids for a given profile. Used in /post for for automatic promoting.
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Format: |
Profile-Key | string | Profile Key of a user profile. |
Request Body
Name | Type | Description |
---|---|---|
campaign | string | Campaign ID for use in /post |
group | string | Group ID for use in /group |
/ads
POST
https://app.ayrshare.com/ads
Promote existing Tweets by passing in a Campaign ID, Group ID, and a list of Tweet IDs. Tweets
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Format: |
Profile-Key | string | Profile Key of a user profile. |
Request Body
Name | Type | Description |
---|---|---|
ads | array | Array of Tweets to promote. See below for example format. |
ads
body parameter format:
Tweets can be sent either as individual array elements or listed in the ids
field.
platfrom
: "twitter"ids
: List of Tweet IDs. These can be obtained from the /post response - note, this is the Tweet ID and not the top level post ID. The Tweet does not need to have been sent from Ayrshare. You can use any Tweet you posted to your handle by grabbing from end digits from the Tweet URL: https://twitter.com/AyrShare/status/1384566731180494855campaign
: CampaignID from /ads/twitter/campaignsgroup
: Group ID from /ads/twitter/groups
/ads
DELETE
https://app.ayrshare.com/api/ads
Delete promoted Tweets. Note, promoted tweets are technically "paused" and can be "activated" again via the Twitter Ads dashboard..
Headers
Name | Type | Description |
---|---|---|
Authorization | string | Format: A |
Profile-Key | string | Profile Key of a user profile. |
Request Body
Name | Type | Description |
---|---|---|
ads | string | Array of Tweets to delete. See below for example format. |
Delete Twitter ads you posted by specifying the follow ads
body parameter:
Tweets can be deleted either as individual array elements or listed in the ids
field.
platfrom
: "twitter"ids
: List of Promoted Tweet IDs. These can be obtained from the POST /ads response.campaign
: CampaignID from /ads/twitter/campaigns
Last updated