action twitter_tweet_counts_full_archive_search { label: "Full archive search counts" description: "Returns Tweet Counts that match a search query." provider: twitter method: GET path: "/2/tweets/counts/all" encoding: json input: { type: "object" properties: { end_time: { type: "string" format: "date-time" } granularity: { type: "string" enum: ["minute", "hour", "day"] } next_token: { type: "string" description: "A base36 pagination token." } pagination_token: { type: "string" description: "A base36 pagination token." } query: { type: "string" } since_id: { type: "string" description: "Unique identifier of this Tweet. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers." } start_time: { type: "string" format: "date-time" } until_id: { type: "string" description: "Unique identifier of this Tweet. This is returned as a string in order to avoid complications with languages and tools that cannot handle large integers." } } required: ["query"] additionalProperties: false } output: { type: "object" properties: { data: { type: "array" items: { type: "object" description: "Represent a Search Count Result." required: ["end", "start", "tweet_count"] properties: { end: { type: "string" format: "date-time" description: "The end time of the bucket." } start: { type: "string" format: "date-time" description: "The start time of the bucket." } tweet_count: { type: "integer" description: "The count for the bucket." } } } } errors: { type: "array" items: { type: "object" description: "An HTTP Problem Details object, as defined in IETF RFC 7807 (https://tools.ietf.org/html/rfc7807)." required: ["type", "title"] properties: { detail: { type: "string" } status: { type: "integer" } title: { type: "string" } type: { type: "string" } } } } meta: { type: "object" properties: { newest_id: { type: "string" description: "The newest id in this response." } next_token: { type: "string" description: "The next token." } oldest_id: { type: "string" description: "The oldest id in this response." } total_tweet_count: { type: "integer" format: "int32" description: "The sum of results returned in this response." } } } } } }