X (Twitter)get/search/search/continuation

Search Continuation

Search
Cost / request

$0.01

Response format

JSON

Protocol

REST

About this endpoint

Access X data through agntdata: Search Continuation. This endpoint return search continuation results. Responses are structured JSON for AI agents, analytics, and automation — one API key instead of juggling upstream accounts. Ideal when you need tweets, user profiles, followers, search, and hashtag streams programmatically.

Use cases

AI agents that need X data in structured form
Analytics and monitoring pipelines for X content
Research and GTM workflows that combine X signals with other data

Parameters

NameInTypeRequiredDescription
end_datequerystringoptional
min_likesquerynumberoptionalDefault: 20
start_datequerystringoptionalYYYY-MM-DDDefault: 2022-01-01
min_repliesquerynumberoptional
continuation_tokenquerystringrequiredDefault: DAACCgACF_Sz76EAJxAKAAMX9LPvoP_Y8AgABAAAAAILAAUAAABQRW1QQzZ3QUFBZlEvZ0dKTjB2R3AvQUFBQUFVWDlJWmx4cHZBZkJmMG5RNUxHdUVQRi9TdTZPSGJzQ0VYOUp6Y3psdUJ3UmYwbFE3Q1dxQWsIAAYAAAAACAAHAAAAAAwACAoAARf0hmXGm8B8AAAA
languagequerystringoptionalDefault: en
limitquerynumberoptionalDefault: 5
queryquerystringrequiredDefault: #python
min_retweetsquerynumberoptionalDefault: 20
sectionquerystringoptionalDefault: top

Responses

Response

{
  "type": "object",
  "properties": {
    "results": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "tweet_id": {
            "type": "string"
          },
          "creation_date": {
            "type": "string"
          },
          "text": {
            "type": "string"
          },
          "media_url": {
            "type": "null"
          },
          "user": {
            "type": "object",
            "properties": {
              "creation_date": {
                "type": "string"
              },
              "user_id": {
                "type": "string"
              },
              "username": {
                "type": "string"
              },
              "name": {
                "type": "string"
              },
              "follower_count": {
                "type": "integer"
              },
              "following_count": {
                "type": "integer"
              },
              "is_private": {
                "type": "boolean"
              },
              "is_verified": {
                "type": "boolean"
              },
              "location": {
                "type": "string"
              },
              "profile_pic_url": {
                "type": "string"
              },
              "description": {
                "type": "string"
              },
              "external_url": {
                "type": "string"
              },
              "number_of_tweets": {
                "type": "integer"
              },
              "bot": {
                "type": "boolean"
              },
              "timestamp": {
                "type": "integer"
              }
            }
          },
          "language": {
            "type": "string"
          },
          "favorite_count": {
            "type": "integer"
          },
          "retweet_count": {
            "type": "integer"
          },
          "reply_count": {
            "type": "integer"
          },
          "quote_count": {
            "type": "integer"
          },
          "retweet": {
            "type": "boolean"
          },
          "timestamp": {
            "type": "integer"
          }
        }
      }
    },
    "continuation_token": {
      "type": "string"
    }
  }
}

Agent / Developer Schema

Machine-readable formats for integrating this endpoint into AI agents and toolchains.

{
  "operationId": "Search_Continuation_get__search_search_continuation",
  "method": "get",
  "path": "/search/search/continuation",
  "summary": "Search Continuation",
  "description": "This endpoint return search continuation results",
  "parameters": [
    {
      "name": "end_date",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string"
      }
    },
    {
      "name": "min_likes",
      "in": "query",
      "required": false,
      "schema": {
        "type": "number",
        "default": "20"
      }
    },
    {
      "name": "start_date",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string",
        "default": "2022-01-01"
      },
      "description": "YYYY-MM-DD"
    },
    {
      "name": "min_replies",
      "in": "query",
      "required": false,
      "schema": {
        "type": "number"
      }
    },
    {
      "name": "continuation_token",
      "in": "query",
      "required": true,
      "schema": {
        "type": "string",
        "default": "DAACCgACF_Sz76EAJxAKAAMX9LPvoP_Y8AgABAAAAAILAAUAAABQRW1QQzZ3QUFBZlEvZ0dKTjB2R3AvQUFBQUFVWDlJWmx4cHZBZkJmMG5RNUxHdUVQRi9TdTZPSGJzQ0VYOUp6Y3psdUJ3UmYwbFE3Q1dxQWsIAAYAAAAACAAHAAAAAAwACAoAARf0hmXGm8B8AAAA"
      }
    },
    {
      "name": "language",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string",
        "default": "en"
      }
    },
    {
      "name": "limit",
      "in": "query",
      "required": false,
      "schema": {
        "type": "number",
        "default": "5"
      }
    },
    {
      "name": "query",
      "in": "query",
      "required": true,
      "schema": {
        "type": "string",
        "default": "#python"
      }
    },
    {
      "name": "min_retweets",
      "in": "query",
      "required": false,
      "schema": {
        "type": "number",
        "default": "20"
      }
    },
    {
      "name": "section",
      "in": "query",
      "required": false,
      "schema": {
        "type": "string",
        "default": "top"
      }
    }
  ],
  "responses": [
    {
      "statusCode": "200",
      "description": "Response",
      "content": {
        "application/json": {
          "schema": {
            "type": "object",
            "properties": {
              "results": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "tweet_id": {
                      "type": "string"
                    },
                    "creation_date": {
                      "type": "string"
                    },
                    "text": {
                      "type": "string"
                    },
                    "media_url": {
                      "type": "null"
                    },
                    "user": {
                      "type": "object",
                      "properties": {
                        "creation_date": {
                          "type": "string"
                        },
                        "user_id": {
                          "type": "string"
                        },
                        "username": {
                          "type": "string"
                        },
                        "name": {
                          "type": "string"
                        },
                        "follower_count": {
                          "type": "integer"
                        },
                        "following_count": {
                          "type": "integer"
                        },
                        "is_private": {
                          "type": "boolean"
                        },
                        "is_verified": {
                          "type": "boolean"
                        },
                        "location": {
                          "type": "string"
                        },
                        "profile_pic_url": {
                          "type": "string"
                        },
                        "description": {
                          "type": "string"
                        },
                        "external_url": {
                          "type": "string"
                        },
                        "number_of_tweets": {
                          "type": "integer"
                        },
                        "bot": {
                          "type": "boolean"
                        },
                        "timestamp": {
                          "type": "integer"
                        }
                      }
                    },
                    "language": {
                      "type": "string"
                    },
                    "favorite_count": {
                      "type": "integer"
                    },
                    "retweet_count": {
                      "type": "integer"
                    },
                    "reply_count": {
                      "type": "integer"
                    },
                    "quote_count": {
                      "type": "integer"
                    },
                    "retweet": {
                      "type": "boolean"
                    },
                    "timestamp": {
                      "type": "integer"
                    }
                  }
                }
              },
              "continuation_token": {
                "type": "string"
              }
            }
          },
          "example": {
            "results": [
              {
                "tweet_id": "1726127805249802561",
                "creation_date": "Sun Nov 19 06:38:33 +0000 2023",
                "text": "SqliSniper\n\nA robust #Python tool designed to detect time-based blind SQL injections in HTTP request headers. It enhances the security assessment process by rapidly scanning and identifying potential vulnerabilities using multi-threaded, ensuring speed and efficiency. Unlike… https://t.co/nuoH2GEtMX",
                "media_url": [
                  "https://pbs.twimg.com/media/F_RwCCTXsAADBL8.png"
                ],
                "video_url": null,
                "user": {
                  "creation_date": "Wed Aug 25 08:44:35 +0000 2021",
                  "user_id": "1430450807451828228",
                  "username": "hack_git",
                  "name": "HackGit",
                  "follower_count": 42700,
                  "following_count": 2,
                  "favourites_count": 507,
                  "is_private": null,
                  "is_verified": false,
                  "is_blue_verified": true,
                  "location": "",
                  "profile_pic_url": "https://pbs.twimg.com/profile_images/1430451138277556224/yDiqSjga_normal.jpg",
                  "profile_banner_url": "https://pbs.twimg.com/profile_banners/1430450807451828228/1629957627",
                  "description": "The channel was created for cybersecurity specialists 🥷\n\n→ Open Source Software\n→ RedTeam\n→ BugBounty\n→ etc\n\n🍻 https://t.co/0PYtBpfJ4f",
                  "external_url": "http://buymeacoffee.com/HackGit",
                  "number_of_tweets": 8410,
                  "bot": false,
                  "timestamp": 1629881075,
                  "has_nft_avatar": false,
                  "category": null,
                  "default_profile": true,
                  "default_profile_image": false,
                  "listed_count": 404,
                  "verified_type": null
                },
                "language": "en",
                "favorite_count": 148,
                "retweet_count": 33,
                "reply_count": 1,
                "quote_count": 0,
                "retweet": false,
                "views": 13392,
                "timestamp": 1700375913,
                "video_view_count": null,
                "in_reply_to_status_id": null,
                "quoted_status_id": null,
                "binding_values": null,
                "expanded_url": "https://twitter.com/hack_git/status/1726127805249802561/photo/1",
                "retweet_tweet_id": null,
                "extended_entities": {
                  "media": [
                    {
                      "display_url": "pic.twitter.com/nuoH2GEtMX",
                      "expanded_url": "https://twitter.com/hack_git/status/1726127805249802561/photo/1",
                      "id_str": "1726127737469906944",
                      "indices": [
                        277,
                        300
                      ],
                      "media_key": "3_1726127737469906944",
                      "media_url_https": "https://pbs.twimg.com/media/F_RwCCTXsAADBL8.png",
                      "type": "photo",
                      "url": "https://t.co/nuoH2GEtMX",
                      "ext_media_availability": {
                        "status": "Available"
                      },
                      "features": {
                        "large": {
                          "faces": []
                        },
                        "medium": {
                          "faces": []
                        },
                        "small": {
                          "faces": []
                        },
                        "orig": {
                          "faces": []
                        }
                      },
                      "sizes": {
                        "large": {
                          "h": 695,
                          "w": 1195,
                          "resize": "fit"
                        },
                        "medium": {
                          "h": 695,
                          "w": 1195,
                          "resize": "fit"
                        },
                        "small": {
                          "h": 395,
                          "w": 680,
                          "resize": "fit"
                        },
                        "thumb": {
                          "h": 150,
                          "w": 150,
                          "resize": "crop"
                        }
                      },
                      "original_info": {
                        "height": 695,
                        "width": 1195,
                        "focus_rects": [
                          {
                            "x": 0,
                            "y": 0,
                            "w": 1195,
                            "h": 669
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 695,
                            "h": 695
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 610,
                            "h": 695
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 348,
                            "h": 695
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 1195,
                            "h": 695
                          }
                        ]
                      }
                    }
                  ]
                },
                "conversation_id": "1726127805249802561",
                "retweet_status": null,
                "quoted_status": null,
                "bookmark_count": 111,
                "source": "Twitter Web App"
              },
              {
                "tweet_id": "1726087149307469916",
                "creation_date": "Sun Nov 19 03:57:00 +0000 2023",
                "text": "Python Trick https://t.co/y0LksW9pCi\n\nLike it 👍 or not 👎? 🤔Comment your opinion below!\n\n#python #programming #developer #morioh #programmer #softwaredeveloper #webdev #webdeveloper #webdevelopment #pythonprogramming #pythonquiz #ai #ml #machinelearning #datascience https://t.co/qd43iIXMsh",
                "media_url": [
                  "https://pbs.twimg.com/media/F_LlxkeaoAARcMH.png"
                ],
                "video_url": null,
                "user": {
                  "creation_date": "Fri Jun 17 12:22:15 +0000 2016",
                  "user_id": "743780794997547008",
                  "username": "Python_Dv",
                  "name": "Python Developer",
                  "follower_count": 58907,
                  "following_count": 1090,
                  "favourites_count": 3695,
                  "is_private": null,
                  "is_verified": false,
                  "is_blue_verified": true,
                  "location": "United States",
                  "profile_pic_url": "https://pbs.twimg.com/profile_images/842358957997883392/59-UQhVS_normal.jpg",
                  "profile_banner_url": "https://pbs.twimg.com/profile_banners/743780794997547008/1489669161",
                  "description": "Tweeting the news, articles, new releases, tools and libraries, events, jobs etc related to #python #webdevelopment #machinelearning #datascience #programing ..",
                  "external_url": "https://morioh.com/a/4f4b74ba17cc",
                  "number_of_tweets": 5162,
                  "bot": false,
                  "timestamp": 1466166135,
                  "has_nft_avatar": false,
                  "category": null,
                  "default_profile": false,
                  "default_profile_image": false,
                  "listed_count": 608,
                  "verified_type": null
                },
                "language": "en",
                "favorite_count": 248,
                "retweet_count": 41,
                "reply_count": 2,
                "quote_count": 1,
                "retweet": false,
                "views": 16178,
                "timestamp": 1700366220,
                "video_view_count": null,
                "in_reply_to_status_id": null,
                "quoted_status_id": null,
                "binding_values": null,
                "expanded_url": "https://twitter.com/Python_Dv/status/1726087149307469916/photo/1",
                "retweet_tweet_id": null,
                "extended_entities": {
                  "media": [
                    {
                      "display_url": "pic.twitter.com/qd43iIXMsh",
                      "expanded_url": "https://twitter.com/Python_Dv/status/1726087149307469916/photo/1",
                      "id_str": "1725694247003922432",
                      "indices": [
                        266,
                        289
                      ],
                      "media_key": "3_1725694247003922432",
                      "media_url_https": "https://pbs.twimg.com/media/F_LlxkeaoAARcMH.png",
                      "type": "photo",
                      "url": "https://t.co/qd43iIXMsh",
                      "ext_media_availability": {
                        "status": "Available"
                      },
                      "features": {
                        "large": {
                          "faces": [
                            {
                              "x": 164,
                              "y": 346,
                              "h": 94,
                              "w": 94
                            }
                          ]
                        },
                        "medium": {
                          "faces": [
                            {
                              "x": 164,
                              "y": 346,
                              "h": 94,
                              "w": 94
                            }
                          ]
                        },
                        "small": {
                          "faces": [
                            {
                              "x": 142,
                              "y": 300,
                              "h": 81,
                              "w": 81
                            }
                          ]
                        },
                        "orig": {
                          "faces": [
                            {
                              "x": 164,
                              "y": 346,
                              "h": 94,
                              "w": 94
                            }
                          ]
                        }
                      },
                      "sizes": {
                        "large": {
                          "h": 783,
                          "w": 754,
                          "resize": "fit"
                        },
                        "medium": {
                          "h": 783,
                          "w": 754,
                          "resize": "fit"
                        },
                        "small": {
                          "h": 680,
                          "w": 655,
                          "resize": "fit"
                        },
                        "thumb": {
                          "h": 150,
                          "w": 150,
                          "resize": "crop"
                        }
                      },
                      "original_info": {
                        "height": 783,
                        "width": 754,
                        "focus_rects": [
                          {
                            "x": 0,
                            "y": 0,
                            "w": 754,
                            "h": 422
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 754,
                            "h": 754
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 687,
                            "h": 783
                          },
                          {
                            "x": 136,
                            "y": 0,
                            "w": 392,
                            "h": 783
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 754,
                            "h": 783
                          }
                        ]
                      }
                    }
                  ]
                },
                "conversation_id": "1726087149307469916",
                "retweet_status": null,
                "quoted_status": null,
                "bookmark_count": 60,
                "source": "Twitter Web App"
              },
              {
                "tweet_id": "1725962424082116675",
                "creation_date": "Sat Nov 18 19:41:23 +0000 2023",
                "text": "During this week, I delivered a comprehensive introductory course on Machine Learning using #python \n\nIt's been fulfilling to contribute to the data science community during the digital health week at @muhimbiliuniver. \n\nMany thanks to the organizers for this opportunity. https://t.co/DsZtxR28ok",
                "media_url": [
                  "https://pbs.twimg.com/media/F_PZqxWXsAAV2Wd.jpg",
                  "https://pbs.twimg.com/media/F_PZqxdWQAEI2Gy.jpg",
                  "https://pbs.twimg.com/media/F_PZqxXXoAApey2.jpg",
                  "https://pbs.twimg.com/media/F_PZqxdWQAAyN_0.jpg"
                ],
                "video_url": null,
                "user": {
                  "creation_date": "Tue Oct 05 14:29:46 +0000 2021",
                  "user_id": "1445395629686071298",
                  "username": "sang_udi2",
                  "name": "Sang'udi Sang'udi",
                  "follower_count": 684,
                  "following_count": 594,
                  "favourites_count": 799,
                  "is_private": null,
                  "is_verified": false,
                  "is_blue_verified": false,
                  "location": "",
                  "profile_pic_url": "https://pbs.twimg.com/profile_images/1599295889352413184/sY9c1i5P_normal.jpg",
                  "profile_banner_url": "https://pbs.twimg.com/profile_banners/1445395629686071298/1688291625",
                  "description": "Computational Neuroscientist |AI| SarataniAI",
                  "external_url": null,
                  "number_of_tweets": 489,
                  "bot": false,
                  "timestamp": 1633444186,
                  "has_nft_avatar": false,
                  "category": null,
                  "default_profile": true,
                  "default_profile_image": false,
                  "listed_count": 1,
                  "verified_type": null
                },
                "language": "en",
                "favorite_count": 102,
                "retweet_count": 22,
                "reply_count": 4,
                "quote_count": 1,
                "retweet": false,
                "views": 6238,
                "timestamp": 1700336483,
                "video_view_count": null,
                "in_reply_to_status_id": null,
                "quoted_status_id": null,
                "binding_values": null,
                "expanded_url": "https://twitter.com/sang_udi2/status/1725962424082116675/photo/1",
                "retweet_tweet_id": null,
                "extended_entities": {
                  "media": [
                    {
                      "display_url": "pic.twitter.com/DsZtxR28ok",
                      "expanded_url": "https://twitter.com/sang_udi2/status/1725962424082116675/photo/1",
                      "id_str": "1725962411037929472",
                      "indices": [
                        273,
                        296
                      ],
                      "media_key": "3_1725962411037929472",
                      "media_url_https": "https://pbs.twimg.com/media/F_PZqxWXsAAV2Wd.jpg",
                      "type": "photo",
                      "url": "https://t.co/DsZtxR28ok",
                      "ext_media_availability": {
                        "status": "Available"
                      },
                      "features": {
                        "large": {
                          "faces": [
                            {
                              "x": 1046,
                              "y": 320,
                              "h": 188,
                              "w": 188
                            }
                          ]
                        },
                        "medium": {
                          "faces": [
                            {
                              "x": 612,
                              "y": 187,
                              "h": 110,
                              "w": 110
                            }
                          ]
                        },
                        "small": {
                          "faces": [
                            {
                              "x": 347,
                              "y": 106,
                              "h": 62,
                              "w": 62
                            }
                          ]
                        },
                        "orig": {
                          "faces": [
                            {
                              "x": 1046,
                              "y": 320,
                              "h": 188,
                              "w": 188
                            }
                          ]
                        }
                      },
                      "sizes": {
                        "large": {
                          "h": 1536,
                          "w": 2048,
                          "resize": "fit"
                        },
                        "medium": {
                          "h": 900,
                          "w": 1200,
                          "resize": "fit"
                        },
                        "small": {
                          "h": 510,
                          "w": 680,
                          "resize": "fit"
                        },
                        "thumb": {
                          "h": 150,
                          "w": 150,
                          "resize": "crop"
                        }
                      },
                      "original_info": {
                        "height": 1536,
                        "width": 2048,
                        "focus_rects": [
                          {
                            "x": 0,
                            "y": 0,
                            "w": 2048,
                            "h": 1147
                          },
                          {
                            "x": 409,
                            "y": 0,
                            "w": 1536,
                            "h": 1536
                          },
                          {
                            "x": 504,
                            "y": 0,
                            "w": 1347,
                            "h": 1536
                          },
                          {
                            "x": 793,
                            "y": 0,
                            "w": 768,
                            "h": 1536
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 2048,
                            "h": 1536
                          }
                        ]
                      }
                    },
                    {
                      "display_url": "pic.twitter.com/DsZtxR28ok",
                      "expanded_url": "https://twitter.com/sang_udi2/status/1725962424082116675/photo/1",
                      "id_str": "1725962411067195393",
                      "indices": [
                        273,
                        296
                      ],
                      "media_key": "3_1725962411067195393",
                      "media_url_https": "https://pbs.twimg.com/media/F_PZqxdWQAEI2Gy.jpg",
                      "type": "photo",
                      "url": "https://t.co/DsZtxR28ok",
                      "ext_media_availability": {
                        "status": "Available"
                      },
                      "features": {
                        "large": {
                          "faces": [
                            {
                              "x": 1360,
                              "y": 482,
                              "h": 164,
                              "w": 164
                            }
                          ]
                        },
                        "medium": {
                          "faces": [
                            {
                              "x": 796,
                              "y": 282,
                              "h": 96,
                              "w": 96
                            }
                          ]
                        },
                        "small": {
                          "faces": [
                            {
                              "x": 451,
                              "y": 160,
                              "h": 54,
                              "w": 54
                            }
                          ]
                        },
                        "orig": {
                          "faces": [
                            {
                              "x": 1360,
                              "y": 482,
                              "h": 164,
                              "w": 164
                            }
                          ]
                        }
                      },
                      "sizes": {
                        "large": {
                          "h": 1536,
                          "w": 2048,
                          "resize": "fit"
                        },
                        "medium": {
                          "h": 900,
                          "w": 1200,
                          "resize": "fit"
                        },
                        "small": {
                          "h": 510,
                          "w": 680,
                          "resize": "fit"
                        },
                        "thumb": {
                          "h": 150,
                          "w": 150,
                          "resize": "crop"
                        }
                      },
                      "original_info": {
                        "height": 1536,
                        "width": 2048,
                        "focus_rects": [
                          {
                            "x": 0,
                            "y": 92,
                            "w": 2048,
                            "h": 1147
                          },
                          {
                            "x": 512,
                            "y": 0,
                            "w": 1536,
                            "h": 1536
                          },
                          {
                            "x": 701,
                            "y": 0,
                            "w": 1347,
                            "h": 1536
                          },
                          {
                            "x": 998,
                            "y": 0,
                            "w": 768,
                            "h": 1536
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 2048,
                            "h": 1536
                          }
                        ]
                      }
                    },
                    {
                      "display_url": "pic.twitter.com/DsZtxR28ok",
                      "expanded_url": "https://twitter.com/sang_udi2/status/1725962424082116675/photo/1",
                      "id_str": "1725962411042119680",
                      "indices": [
                        273,
                        296
                      ],
                      "media_key": "3_1725962411042119680",
                      "media_url_https": "https://pbs.twimg.com/media/F_PZqxXXoAApey2.jpg",
                      "type": "photo",
                      "url": "https://t.co/DsZtxR28ok",
                      "ext_media_availability": {
                        "status": "Available"
                      },
                      "features": {
                        "large": {
                          "faces": []
                        },
                        "medium": {
                          "faces": []
                        },
                        "small": {
                          "faces": []
                        },
                        "orig": {
                          "faces": []
                        }
                      },
                      "sizes": {
                        "large": {
                          "h": 1536,
                          "w": 2048,
                          "resize": "fit"
                        },
                        "medium": {
                          "h": 900,
                          "w": 1200,
                          "resize": "fit"
                        },
                        "small": {
                          "h": 510,
                          "w": 680,
                          "resize": "fit"
                        },
                        "thumb": {
                          "h": 150,
                          "w": 150,
                          "resize": "crop"
                        }
                      },
                      "original_info": {
                        "height": 1536,
                        "width": 2048,
                        "focus_rects": [
                          {
                            "x": 0,
                            "y": 195,
                            "w": 2048,
                            "h": 1147
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 1536,
                            "h": 1536
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 1347,
                            "h": 1536
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 768,
                            "h": 1536
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 2048,
                            "h": 1536
                          }
                        ]
                      }
                    },
                    {
                      "display_url": "pic.twitter.com/DsZtxR28ok",
                      "expanded_url": "https://twitter.com/sang_udi2/status/1725962424082116675/photo/1",
                      "id_str": "1725962411067195392",
                      "indices": [
                        273,
                        296
                      ],
                      "media_key": "3_1725962411067195392",
                      "media_url_https": "https://pbs.twimg.com/media/F_PZqxdWQAAyN_0.jpg",
                      "type": "photo",
                      "url": "https://t.co/DsZtxR28ok",
                      "ext_media_availability": {
                        "status": "Available"
                      },
                      "features": {
                        "large": {
                          "faces": [
                            {
                              "x": 792,
                              "y": 478,
                              "h": 96,
                              "w": 96
                            },
                            {
                              "x": 94,
                              "y": 232,
                              "h": 104,
                              "w": 104
                            },
                            {
                              "x": 630,
                              "y": 220,
                              "h": 182,
                              "w": 182
                            }
                          ]
                        },
                        "medium": {
                          "faces": [
                            {
                              "x": 464,
                              "y": 280,
                              "h": 56,
                              "w": 56
                            },
                            {
                              "x": 55,
                              "y": 135,
                              "h": 60,
                              "w": 60
                            },
                            {
                              "x": 369,
                              "y": 128,
                              "h": 106,
                              "w": 106
                            }
                          ]
                        },
                        "small": {
                          "faces": [
                            {
                              "x": 262,
                              "y": 158,
                              "h": 31,
                              "w": 31
                            },
                            {
                              "x": 31,
                              "y": 77,
                              "h": 34,
                              "w": 34
                            },
                            {
                              "x": 209,
                              "y": 73,
                              "h": 60,
                              "w": 60
                            }
                          ]
                        },
                        "orig": {
                          "faces": [
                            {
                              "x": 792,
                              "y": 478,
                              "h": 96,
                              "w": 96
                            },
                            {
                              "x": 94,
                              "y": 232,
                              "h": 104,
                              "w": 104
                            },
                            {
                              "x": 630,
                              "y": 220,
                              "h": 182,
                              "w": 182
                            }
                          ]
                        }
                      },
                      "sizes": {
                        "large": {
                          "h": 1536,
                          "w": 2048,
                          "resize": "fit"
                        },
                        "medium": {
                          "h": 900,
                          "w": 1200,
                          "resize": "fit"
                        },
                        "small": {
                          "h": 510,
                          "w": 680,
                          "resize": "fit"
                        },
                        "thumb": {
                          "h": 150,
                          "w": 150,
                          "resize": "crop"
                        }
                      },
                      "original_info": {
                        "height": 1536,
                        "width": 2048,
                        "focus_rects": [
                          {
                            "x": 0,
                            "y": 0,
                            "w": 2048,
                            "h": 1147
                          },
                          {
                            "x": 307,
                            "y": 0,
                            "w": 1536,
                            "h": 1536
                          },
                          {
                            "x": 402,
                            "y": 0,
                            "w": 1347,
                            "h": 1536
                          },
                          {
                            "x": 691,
                            "y": 0,
                            "w": 768,
                            "h": 1536
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 2048,
                            "h": 1536
                          }
                        ]
                      }
                    }
                  ]
                },
                "conversation_id": "1725962424082116675",
                "retweet_status": null,
                "quoted_status": null,
                "bookmark_count": 0,
                "source": "Twitter for iPhone"
              },
              {
                "tweet_id": "1726025996342829403",
                "creation_date": "Sat Nov 18 23:54:00 +0000 2023",
                "text": "Types of Operators in Python https://t.co/KRkeELzeZO\n\n#python #programming #developer #morioh #programmer #softwaredeveloper #computerscience #webdev #webdeveloper #webdevelopment #pythonprogramming #pythonquiz #ai #ml #machinelearning #datascience https://t.co/P2VLZ8TVpE",
                "media_url": [
                  "https://pbs.twimg.com/media/F_H7uBnaMAAEdke.png"
                ],
                "video_url": null,
                "user": {
                  "creation_date": "Wed Jun 01 07:45:49 +0000 2016",
                  "user_id": "737913022006579200",
                  "username": "pythoncodequs",
                  "name": "Python Programming",
                  "follower_count": 16759,
                  "following_count": 2650,
                  "favourites_count": 265,
                  "is_private": null,
                  "is_verified": false,
                  "is_blue_verified": false,
                  "location": "United States",
                  "profile_pic_url": "https://pbs.twimg.com/profile_images/978908252510605312/Tc0oLgdS_normal.jpg",
                  "profile_banner_url": "https://pbs.twimg.com/profile_banners/737913022006579200/1522224918",
                  "description": "Tweeting out the best #Python posts from https://t.co/rId6P1Qp2r. Part of the @GeekCash family ❤️",
                  "external_url": "http://morioh.com",
                  "number_of_tweets": 5698,
                  "bot": false,
                  "timestamp": 1464767149,
                  "has_nft_avatar": false,
                  "category": null,
                  "default_profile": true,
                  "default_profile_image": false,
                  "listed_count": 169,
                  "verified_type": null
                },
                "language": "en",
                "favorite_count": 214,
                "retweet_count": 51,
                "reply_count": 1,
                "quote_count": 1,
                "retweet": false,
                "views": 20075,
                "timestamp": 1700351640,
                "video_view_count": null,
                "in_reply_to_status_id": null,
                "quoted_status_id": null,
                "binding_values": null,
                "expanded_url": "https://twitter.com/pythoncodequs/status/1726025996342829403/photo/1",
                "retweet_tweet_id": null,
                "extended_entities": {
                  "media": [
                    {
                      "display_url": "pic.twitter.com/P2VLZ8TVpE",
                      "expanded_url": "https://twitter.com/pythoncodequs/status/1726025996342829403/photo/1",
                      "id_str": "1725436900385894400",
                      "indices": [
                        249,
                        272
                      ],
                      "media_key": "3_1725436900385894400",
                      "media_url_https": "https://pbs.twimg.com/media/F_H7uBnaMAAEdke.png",
                      "type": "photo",
                      "url": "https://t.co/P2VLZ8TVpE",
                      "ext_media_availability": {
                        "status": "Available"
                      },
                      "features": {
                        "large": {
                          "faces": []
                        },
                        "medium": {
                          "faces": []
                        },
                        "small": {
                          "faces": []
                        },
                        "orig": {
                          "faces": []
                        }
                      },
                      "sizes": {
                        "large": {
                          "h": 892,
                          "w": 843,
                          "resize": "fit"
                        },
                        "medium": {
                          "h": 892,
                          "w": 843,
                          "resize": "fit"
                        },
                        "small": {
                          "h": 680,
                          "w": 643,
                          "resize": "fit"
                        },
                        "thumb": {
                          "h": 150,
                          "w": 150,
                          "resize": "crop"
                        }
                      },
                      "original_info": {
                        "height": 892,
                        "width": 843,
                        "focus_rects": [
                          {
                            "x": 0,
                            "y": 0,
                            "w": 843,
                            "h": 472
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 843,
                            "h": 843
                          },
                          {
                            "x": 61,
                            "y": 0,
                            "w": 782,
                            "h": 892
                          },
                          {
                            "x": 289,
                            "y": 0,
                            "w": 446,
                            "h": 892
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 843,
                            "h": 892
                          }
                        ]
                      }
                    }
                  ]
                },
                "conversation_id": "1726025996342829403",
                "retweet_status": null,
                "quoted_status": null,
                "bookmark_count": 86,
                "source": "Twitter Web App"
              },
              {
                "tweet_id": "1725608117604319615",
                "creation_date": "Fri Nov 17 20:13:30 +0000 2023",
                "text": "Made with #python, #matplotlib and #numpy.\nhttps://t.co/vn6A2SJmgS https://t.co/vN8jffX7SZ",
                "media_url": [
                  "https://pbs.twimg.com/media/F_KXaPBWAAE0JaU.jpg"
                ],
                "video_url": null,
                "user": {
                  "creation_date": "Sat Dec 06 21:47:21 +0000 2014",
                  "user_id": "2908398142",
                  "username": "S_Conradi",
                  "name": "Simone Conradi",
                  "follower_count": 3254,
                  "following_count": 1049,
                  "favourites_count": 5146,
                  "is_private": null,
                  "is_verified": false,
                  "is_blue_verified": false,
                  "location": "Anywhere",
                  "profile_pic_url": "https://pbs.twimg.com/profile_images/1701652146624638976/M-TeK8nK_normal.jpg",
                  "profile_banner_url": "https://pbs.twimg.com/profile_banners/2908398142/1648751476",
                  "description": "Theoretical Physics Ph.D., Computer Science Teacher. Author of “Intelligenza Artificiale” Zanichelli 2022",
                  "external_url": "https://profconradi.github.io",
                  "number_of_tweets": 660,
                  "bot": false,
                  "timestamp": 1417902441,
                  "has_nft_avatar": false,
                  "category": null,
                  "default_profile": true,
                  "default_profile_image": false,
                  "listed_count": 44,
                  "verified_type": null
                },
                "language": "en",
                "favorite_count": 2161,
                "retweet_count": 231,
                "reply_count": 23,
                "quote_count": 21,
                "retweet": false,
                "views": 160960,
                "timestamp": 1700252010,
                "video_view_count": null,
                "in_reply_to_status_id": null,
                "quoted_status_id": null,
                "binding_values": null,
                "expanded_url": "https://twitter.com/S_Conradi/status/1725608117604319615/photo/1",
                "retweet_tweet_id": null,
                "extended_entities": {
                  "media": [
                    {
                      "display_url": "pic.twitter.com/vN8jffX7SZ",
                      "expanded_url": "https://twitter.com/S_Conradi/status/1725608117604319615/photo/1",
                      "id_str": "1725608084200882177",
                      "indices": [
                        67,
                        90
                      ],
                      "media_key": "3_1725608084200882177",
                      "media_url_https": "https://pbs.twimg.com/media/F_KXaPBWAAE0JaU.jpg",
                      "type": "photo",
                      "url": "https://t.co/vN8jffX7SZ",
                      "ext_media_availability": {
                        "status": "Available"
                      },
                      "features": {
                        "large": {
                          "faces": []
                        },
                        "medium": {
                          "faces": []
                        },
                        "small": {
                          "faces": []
                        },
                        "orig": {
                          "faces": []
                        }
                      },
                      "sizes": {
                        "large": {
                          "h": 2048,
                          "w": 1670,
                          "resize": "fit"
                        },
                        "medium": {
                          "h": 1200,
                          "w": 978,
                          "resize": "fit"
                        },
                        "small": {
                          "h": 680,
                          "w": 554,
                          "resize": "fit"
                        },
                        "thumb": {
                          "h": 150,
                          "w": 150,
                          "resize": "crop"
                        }
                      },
                      "original_info": {
                        "height": 4096,
                        "width": 3339,
                        "focus_rects": [
                          {
                            "x": 0,
                            "y": 1009,
                            "w": 3339,
                            "h": 1870
                          },
                          {
                            "x": 0,
                            "y": 275,
                            "w": 3339,
                            "h": 3339
                          },
                          {
                            "x": 0,
                            "y": 41,
                            "w": 3339,
                            "h": 3806
                          },
                          {
                            "x": 715,
                            "y": 0,
                            "w": 2048,
                            "h": 4096
                          },
                          {
                            "x": 0,
                            "y": 0,
                            "w": 3339,
                            "h": 4096
                          }
                        ]
                      }
                    }
                  ]
                },
                "conversation_id": "1725608117604319615",
                "retweet_status": null,
                "quoted_status": null,
                "bookmark_count": 511,
                "source": "Twitter Web App"
              }
            ],
            "continuation_token": "DAACCgACF_Sz76EAJxAKAAMX9LPvoP-x4AgABAAAAAILAAUAAACIRW1QQzZ3QUFBZlEvZ0dKTjB2R3AvQUFBQUFvWDg5bXVIeFl3UXhmMEUzK3hHcUZiRi9TR1pjYWJ3SHdYOHBkd3QxWUJmeGYwblE1TEd1RVBGL1N1Nk9IYnNDRVg5RXNkK2RhZ1hCZjBuTnpPVzRIQkYvUndGK3pXMFVFWDlKVU93bHFnSkE9PQgABgAAAAAIAAcAAAABDAAICgABF_SGZcabwHwAAAA"
          }
        }
      }
    },
    {
      "statusCode": "422",
      "description": "Validation Error",
      "content": {
        "application/json": {
          "schema": {
            "title": "HTTPValidationError",
            "type": "object",
            "properties": {
              "detail": {
                "title": "Detail",
                "type": "array",
                "items": {
                  "title": "ValidationError",
                  "required": [
                    "loc",
                    "msg",
                    "type"
                  ],
                  "type": "object",
                  "properties": {
                    "loc": {
                      "title": "Location",
                      "type": "array",
                      "items": {
                        "anyOf": [
                          {
                            "type": "string"
                          },
                          {
                            "type": "integer"
                          }
                        ]
                      }
                    },
                    "msg": {
                      "title": "Message",
                      "type": "string"
                    },
                    "type": {
                      "title": "Error Type",
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "example": {
            "detail": [
              {
                "loc": [],
                "msg": "",
                "type": ""
              }
            ]
          }
        }
      }
    }
  ]
}

Pricing

$0.01per successful request

Credits are deducted from your agntdata balance on each successful API call. Failed requests (4xx/5xx) are not charged.

Related endpoints

Start using this endpoint

Generate your API key and make your first call in under a minute. Free tier available with transparent pricing.

X APIX data APIsearch continuation APIAI agents data APIX APIX data APIX for AI agents