643 matches
14 actions
X
14 actions
- Create DM message by participant IDPOSTv1.0.0
- Create PostsPOSTv1.0.0
- Delete PostsDELETEv1.0.0
- Follow UserPOSTv1.0.0
- Get Posts by IDGETv1.0.0
- Get Users by UsernameGETv1.0.0
- Get Users FollowersGETv1.0.0
- Get Users MeGETv1.0.0
- Get Users MentionsGETv1.0.0
- Get Users PostsGETv1.0.0
- Like PostPOSTv1.0.0
- Repost PostPOSTv1.0.0
- Search Posts RecentGETv1.0.0
- Search UsersGETv1.0.0
Social/X
Create Posts
v1.0.0Input
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114
- 115
- 116
- 117
- 118
- 119
- 120
- 121
- 122
- 123
- 124
- 125
- 126
- 127
- 128
- 129
- 130
- 131
- 132
- 133
- 134
- 135
- 136
- 137
- 138
- 139
- 140
- 141
- 142
- 143
- 144
- 145
- 146
- 147
- 148
- 149
- 150
- 151
- 152
- 153
- 154
- 155
- 156
- 157
- 158
- 159
- 160
- 161
- 162
- 163
- 164
- 165
- 166
- 167
- 168
- 169
- 170
- 171
- 172
- 173
- 174
- 175
- 176
- 177
- 178
- 179
- 180
- 181
- 182
- 183
- 184
- 185
- 186
- 187
- 188
- 189
- 190
- 191
- 192
- 193
- 194
- 195
- 196
- 197
- 198
- 199
- 200
- 201
- 202
- 203
- 204
- 205
- 206
- 207
- 208
- 209
- 210
- 211
- 212
- 213
- 214
- 215
- 216
- 217
- 218
- 219
- 220
- 221
- 222
- 223
- 224
- 225
- 226
- 227
- 228
- 229
- 230
- 231
- 232
- 233
- 234
- 235
{
"type": "object",
"properties": {
"card_uri": {
"type": "string",
"description": "Card URI parameter."
},
"community_id": {
"type": "string",
"description": "Community to post the tweet to."
},
"direct_message_deep_link": {
"type": "string",
"description": "Direct message deep link."
},
"edit_options": {
"type": "object",
"description": "Edit an existing tweet rather than creating a new one.",
"required": [
"previous_post_id"
],
"properties": {
"previous_post_id": {
"type": "string",
"description": "The ID of the Post being edited."
}
},
"additionalProperties": false
},
"for_super_followers_only": {
"type": "boolean",
"description": "Restrict tweet to super followers."
},
"geo": {
"type": "object",
"description": "Geo location for the tweet.",
"required": [
"place_id"
],
"properties": {
"place_id": {
"type": "string",
"description": "Place ID for geo tagging."
}
},
"additionalProperties": false
},
"made_with_ai": {
"type": "boolean",
"description": "Disclose that the tweet contains AI-generated media."
},
"media": {
"type": "object",
"description": "Media attachments.",
"required": [
"media_ids"
],
"properties": {
"call_to_actions": {
"type": "object",
"description": "Call-to-action button rendered on the media entity.",
"properties": {
"app_install": {
"type": "object",
"description": "App Install CTA. At least one store id should be provided.",
"properties": {
"app_store_id": {
"type": "string",
"description": "Apple App Store iPhone app id."
},
"ipad_app_store_id": {
"type": "string",
"description": "Apple App Store iPad app id."
},
"play_store_id": {
"type": "string",
"description": "Google Play Store app id."
}
},
"additionalProperties": false
},
"visit_site": {
"type": "object",
"description": "Visit Site CTA.",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "HTTPS URL the CTA links to."
}
},
"additionalProperties": false
},
"watch_now": {
"type": "object",
"description": "Watch Now CTA.",
"required": [
"url"
],
"properties": {
"url": {
"type": "string",
"description": "HTTPS URL the CTA links to."
}
},
"additionalProperties": false
}
},
"additionalProperties": false
},
"description": {
"type": "string",
"description": "Description for the media, rendered on the Post card for video and Amplify content."
},
"embeddable": {
"type": "boolean",
"description": "When true, the media's asset URLs do not expire and external syndicated playback is allowed."
},
"media_ids": {
"type": "array",
"description": "Media IDs to attach to the tweet.",
"items": {
"type": "string"
}
},
"preview_media_id": {
"type": "string",
"description": "Media id whose asset is used as the preview image."
},
"tagged_user_ids": {
"type": "array",
"description": "User IDs tagged in the media.",
"items": {
"type": "string"
}
},
"title": {
"type": "string",
"description": "Title for the media, rendered on the Post card for video and Amplify content."
}
},
"additionalProperties": false
},
"nullcast": {
"type": "boolean",
"description": "If true, the tweet is not shown in the public timeline."
},
"paid_partnership": {
"type": "boolean",
"description": "Disclose that the tweet is a paid partnership."
},
"poll": {
"type": "object",
"description": "Poll configuration.",
"required": [
"duration_minutes",
"options"
],
"properties": {
"duration_minutes": {
"type": "integer",
"description": "Duration of the poll in minutes."
},
"options": {
"type": "array",
"description": "Poll options (2-4 choices, 1-25 characters each).",
"items": {
"type": "string"
}
},
"reply_settings": {
"type": "string",
"description": "Who can reply to the poll Tweet. Accepted for compatibility; it carries no backend argument and is dropped before the mutation is issued (see `translate_body`).",
"enum": [
"following",
"mentionedUsers",
"subscribers",
"verified"
]
}
},
"additionalProperties": false
},
"quote_tweet_id": {
"type": "string",
"description": "Tweet ID to quote."
},
"reply": {
"type": "object",
"description": "Tweet reply configuration.",
"required": [
"in_reply_to_tweet_id"
],
"properties": {
"auto_populate_reply_metadata": {
"type": "boolean",
"description": "If true, reply metadata is automatically populated. Accepted for compatibility; it carries no backend argument and is dropped before the mutation is issued (see `translate_body`)."
},
"exclude_reply_user_ids": {
"type": "array",
"description": "User IDs to exclude from the reply thread.",
"items": {
"type": "string"
}
},
"in_reply_to_tweet_id": {
"type": "string",
"description": "The ID of the tweet being replied to."
}
},
"additionalProperties": false
},
"reply_settings": {
"type": "string",
"description": "Who can reply to this tweet.",
"enum": [
"following",
"mentionedUsers",
"subscribers",
"verified"
]
},
"share_with_followers": {
"type": "boolean",
"description": "Share an exclusive (super-follower) tweet with all followers."
},
"text": {
"type": "string",
"description": "Text of the tweet. Required unless media is provided. Defaulted to an empty string so it is always sent: the backend's `tweet_text` variable is non-null and rejects an absent value."
}
},
"additionalProperties": false
}Output
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
{
"type": "object",
"properties": {
"data": {
"type": "object",
"required": [
"id",
"text"
],
"properties": {
"edit_history_post_ids": {
"type": "array",
"description": "Post IDs in this Post's edit history chain.",
"items": {
"type": "string"
}
},
"id": {
"type": "string",
"description": "Unique identifier of the created Post."
},
"text": {
"type": "string",
"description": "The content of the created Post."
}
}
},
"errors": {
"type": "array",
"items": {
"type": "object"
}
}
}
}