X (Twitter) · Arazzo Workflow

X List the Posts Mentioning a Handle

Version 1.0.0

Resolve a username to an id, then fetch posts that mention that user.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub Social-MediaMicrobloggingReal-Time DataStreamingAdvertisingContentArazzoWorkflows

Provider

twitter

Workflows

mentions-of-handle
Resolve a username and list the posts that mention that user.
Chains the username lookup endpoint into the mentions endpoint so a caller can go from a handle to the posts mentioning it.
2 steps inputs: authorization, maxResults, username outputs: mentions, userId
1
resolveUser
Resolve the username into a numeric user id.
2
getMentions
Retrieve the most recent posts that mention the resolved user.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: X List the Posts Mentioning a Handle
  summary: Resolve a username to an id, then fetch posts that mention that user.
  description: >-
    Resolves an X account by its @username and then retrieves the most recent
    posts that mention that account. The lookup step requests the user.fields
    needed to chain, and the mentions step inlines the tweet.fields, expansions,
    and max_results so the flow reads and executes without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: tweetsApi
  url: ../openapi/twitter-tweets-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/twitter-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: mentions-of-handle
  summary: Resolve a username and list the posts that mention that user.
  description: >-
    Chains the username lookup endpoint into the mentions endpoint so a caller
    can go from a handle to the posts mentioning it.
  inputs:
    type: object
    required:
    - username
    properties:
      username:
        type: string
        description: The @username whose mentions to list, without the leading @.
      maxResults:
        type: integer
        description: The maximum number of mention posts to return (5-100).
        default: 25
      authorization:
        type: string
        description: Bearer token to authorize the requests (e.g. "Bearer xxx").
  steps:
  - stepId: resolveUser
    description: Resolve the username into a numeric user id.
    operationId: getUsersByUsername
    parameters:
    - name: username
      in: path
      value: $inputs.username
    - name: user.fields
      in: query
      value: id,name,username
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      userId: $response.body#/data/id
  - stepId: getMentions
    description: Retrieve the most recent posts that mention the resolved user.
    operationId: getUsersMentions
    parameters:
    - name: id
      in: path
      value: $steps.resolveUser.outputs.userId
    - name: max_results
      in: query
      value: $inputs.maxResults
    - name: tweet.fields
      in: query
      value: id,text,author_id,created_at
    - name: expansions
      in: query
      value: author_id
    - name: user.fields
      in: query
      value: id,name,username
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      mentions: $response.body#/data
      nextToken: $response.body#/meta/next_token
  outputs:
    userId: $steps.resolveUser.outputs.userId
    mentions: $steps.getMentions.outputs.mentions

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/twitter-mentions-of-handle-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.