apidance.pro
  1. graphql
apidance.pro
  • twitter-api
    • 1.1
      • /users/show
      • /followers/list
      • /friends/list
    • graphql
      • CreateTweet
        POST
      • CreateNoteTweet
        POST
      • CreateRetweet
        POST
      • QuoteTweet
        POST
      • FavoriteTweet
        POST
      • CreateBookmark
        POST
      • HomeLatestTimeline
        GET
      • SearchTimeline
        GET
      • AudioSpaceSearch
        GET
      • AudioSpaceById
        GET
      • TweetDetail
        GET
      • TweetResultByRestId
        GET
      • UserByScreenName
        GET
      • UserByRestId
        GET
      • UserTweets
        GET
      • UserTweetsAndReplies
        GET
      • UserMedia
        GET
      • Followers
        GET
      • Following
        GET
      • FollowersYouKnow
        GET
      • Retweeters
        GET
      • ListLatestTweetsTimeline
        GET
      • ProfileSpotlightsQuery
        GET
      • CommunitiesFetchOneQuery
        GET
      • CommunityTweetsTimeline
        GET
    • simple api
      • TweetDetail
      • UserTweets
      • Retweeters
      • Quotes
      • Search
    • notifications
      • notifications all
      • notifications mentions
      • notifications verified
    • Upload media
      POST
    • Check the remaining API calls
      GET
  • cloudflare-api
    • /cf
      GET
    • /cf
      POST
    • /cfCookie
      GET
    • /cfCaptcha
      GET
    • /cfCheckpoint
      GET
    • Check the remaining API calls
      GET
  • pumpscam
    • pumpscam api
    • Check the remaining API calls
  1. graphql

QuoteTweet

POST
https://api.apidance.pro/graphql/CreateTweet
See the official documentation on how to upload images: https://developer.x.com/en/docs/x-api/v1/media/upload-media/overview
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.apidance.pro/graphql/CreateTweet' \
--header 'apikey: your-apikey' \
--header 'Content-Type: application/json' \
--data-raw '{
  "variables": {
    "tweet_text": "fight!",
    "attachment_url":"https://x.com/realDonaldTrump/status/1852944751370109241",
    "dark_request": false,
    "media": {
      "media_entities": [],
      "possibly_sensitive": false
    },
    "semantic_annotation_ids": [],
    "includePromotedContent": false
  }
}'
Response Response Example
{}

Request

Header Params
apikey
string 
optional
Default:
your-apikey
Body Params application/json
variables
object 
required
tweet_text
string 
required
attachment_url
string 
required
dark_request
boolean 
required
media
object 
required
semantic_annotation_ids
array[string]
required
includePromotedContent
boolean 
required
Examples

Responses

🟢200Success
application/json
Body
object {0}
Previous
CreateRetweet
Next
FavoriteTweet
Built with