Skip to content
Eden Engine

Twitter List Timeline (Posts by List ID)

omnial/twitter-web-fetch-list-timeline

Given a Twitter/X list ID, returns that list's public timeline: each post's engagement counts (favorites, retweets, replies, quotes, bookmarks, views), author (name, handle, follower count, verification badge), language, timestamp, media attachments, and -- when the post is a quote or a retweet -- the full quoted or retweeted post underneath it, plus a cursor for fetching the next page.

activeper callv1
Provider
Web & Business Data Network
Category
twitter
Provider price
$0.0020475 per call
Latency p50 / p95
— / —
Success rate
Verified

Provider list price; Omnial MCP charges provider cost plus a platform markup on top.

Contract

input_schema.json
{
  "type": "object",
  "required": [
    "list_id"
  ],
  "properties": {
    "cursor": {
      "type": "string",
      "description": "Cursor"
    },
    "list_id": {
      "type": "string",
      "examples": [
        "84839422"
      ],
      "description": "List ID"
    }
  },
  "additionalProperties": false
}
output_schema.json
{
  "type": "object",
  "properties": {
    "cursor": {
      "type": "string",
      "description": "Opaque pagination token for the next page; pass it back as `cursor`."
    },
    "timeline": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "lang": {
            "type": "string",
            "description": "BCP-47-ish language code, e.g. 'en', 'fr'."
          },
          "text": {
            "type": "null",
            "description": "Always `null`: the raw post text is a URL leak in at least one captured post and is stripped (value replaced with null, field name kept) rather than shipped."
          },
          "media": {
            "type": "object",
            "properties": {
              "photo": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "media_url_https": {
                      "type": "null",
                      "description": "Always `null`: the real photo URL is stripped (field name kept, value replaced with null) because it is a URL leaf."
                    }
                  },
                  "additionalProperties": false
                }
              },
              "video": {
                "type": "array",
                "items": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "string"
                    },
                    "duration": {
                      "type": [
                        "number",
                        "null"
                      ],
                      "description": "Milliseconds. Observed null for at least one short looping video clip with a single, bitrate-0 variant."
                    },
                    "variants": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "url": {
                            "type": "null",
                            "description": "Always `null`: the real video/manifest URL is stripped (field name kept, value replaced with null) because it is a URL leaf."
                          },
                          "bitrate": {
                            "type": "number",
                            "description": "Absent on the streaming-manifest (.m3u8) variant; present (sometimes 0) on direct .mp4 variants."
                          },
                          "content_type": {
                            "type": "string"
                          }
                        },
                        "additionalProperties": false
                      }
                    },
                    "aspect_ratio": {
                      "type": "array",
                      "items": {
                        "type": "number"
                      }
                    },
                    "original_info": {
                      "type": "object",
                      "properties": {
                        "width": {
                          "type": "number"
                        },
                        "height": {
                          "type": "number"
                        },
                        "focus_rects": {
                          "type": "array",
                          "description": "Observed empty on every real call; item shape unconfirmed."
                        }
                      },
                      "additionalProperties": false
                    }
                  },
                  "additionalProperties": false
                }
              }
            },
            "description": "Absent or `{}` when the post has no attached media.",
            "additionalProperties": false
          },
          "views": {
            "type": "string",
            "description": "View count as a decimal STRING (e.g. '41959'), never a number."
          },
          "author": {
            "type": "object",
            "properties": {
              "name": {
                "type": "string"
              },
              "avatar": {
                "type": "null",
                "description": "Always `null`: the account's real avatar URL is stripped (field name kept, value replaced with null) because it is a URL leaf."
              },
              "rest_id": {
                "type": "string",
                "description": "The account's internal numeric id."
              },
              "followers": {
                "type": "number"
              },
              "screen_name": {
                "type": "string"
              },
              "blue_verified": {
                "type": "boolean"
              }
            },
            "additionalProperties": false
          },
          "quoted": {
            "type": "object",
            "properties": {
              "lang": {
                "type": "string"
              },
              "text": {
                "type": "string"
              },
              "media": {
                "type": "object",
                "properties": {
                  "photo": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "media_url_https": {
                          "type": "null",
                          "description": "Always `null`: the real photo URL is stripped (field name kept, value replaced with null) because it is a URL leaf."
                        }
                      },
                      "additionalProperties": false
                    }
                  },
                  "video": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "duration": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "variants": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "url": {
                                "type": "null",
                                "description": "Always `null`: the real video/manifest URL is stripped (field name kept, value replaced with null) because it is a URL leaf."
                              },
                              "bitrate": {
                                "type": "number"
                              },
                              "content_type": {
                                "type": "string"
                              }
                            },
                            "additionalProperties": false
                          }
                        },
                        "aspect_ratio": {
                          "type": "array",
                          "items": {
                            "type": "number"
                          }
                        },
                        "original_info": {
                          "type": "object",
                          "properties": {
                            "width": {
                              "type": "number"
                            },
                            "height": {
                              "type": "number"
                            },
                            "focus_rects": {
                              "type": "array"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    }
                  }
                },
                "additionalProperties": false
              },
              "views": {
                "type": [
                  "string",
                  "null"
                ],
                "description": "Observed null once (an old, since-quoted post); otherwise a decimal string."
              },
              "author": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "avatar": {
                    "type": "null",
                    "description": "Always `null`: the real avatar URL is stripped (field name kept, value replaced with null) because it is a URL leaf."
                  },
                  "rest_id": {
                    "type": "string"
                  },
                  "screen_name": {
                    "type": "string"
                  },
                  "blue_verified": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              "quotes": {
                "type": "number"
              },
              "replies": {
                "type": "number"
              },
              "retweets": {
                "type": "number"
              },
              "tweet_id": {
                "type": "string"
              },
              "bookmarks": {
                "type": "number"
              },
              "favorites": {
                "type": "number"
              },
              "created_at": {
                "type": "string"
              },
              "conversation_id": {
                "type": "string"
              }
            },
            "description": "The quoted post, present only when this post quotes another.",
            "additionalProperties": false
          },
          "quotes": {
            "type": "number"
          },
          "source": {
            "type": "string",
            "description": "An HTML anchor naming the client used to post, e.g. '<a ...>Twitter Web App</a>'."
          },
          "replies": {
            "type": "number"
          },
          "retweets": {
            "type": "number"
          },
          "tweet_id": {
            "type": "string"
          },
          "bookmarks": {
            "type": "number"
          },
          "favorites": {
            "type": "number"
          },
          "retweeted": {
            "type": "object",
            "properties": {
              "id": {
                "type": "string"
              }
            },
            "description": "Present only on a retweet; carries just the original post's id.",
            "additionalProperties": false
          },
          "created_at": {
            "type": "string",
            "description": "Raw Twitter timestamp format, e.g. 'Sat Sep 05 04:01:00 +0000 2026'."
          },
          "screen_name": {
            "type": "string",
            "description": "The posting account's handle; duplicates author.screen_name."
          },
          "retweeted_tweet": {
            "type": "object",
            "properties": {
              "lang": {
                "type": "string"
              },
              "text": {
                "type": "string"
              },
              "media": {
                "type": "object",
                "properties": {
                  "video": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "id": {
                          "type": "string"
                        },
                        "duration": {
                          "type": [
                            "number",
                            "null"
                          ]
                        },
                        "variants": {
                          "type": "array",
                          "items": {
                            "type": "object",
                            "properties": {
                              "url": {
                                "type": "null",
                                "description": "Always `null`: the real video/manifest URL is stripped (field name kept, value replaced with null) because it is a URL leaf."
                              },
                              "bitrate": {
                                "type": "number"
                              },
                              "content_type": {
                                "type": "string"
                              }
                            },
                            "additionalProperties": false
                          }
                        },
                        "aspect_ratio": {
                          "type": "array",
                          "items": {
                            "type": "number"
                          }
                        },
                        "original_info": {
                          "type": "object",
                          "properties": {
                            "width": {
                              "type": "number"
                            },
                            "height": {
                              "type": "number"
                            },
                            "focus_rects": {
                              "type": "array"
                            }
                          },
                          "additionalProperties": false
                        }
                      },
                      "additionalProperties": false
                    }
                  }
                },
                "additionalProperties": false
              },
              "author": {
                "type": "object",
                "properties": {
                  "name": {
                    "type": "string"
                  },
                  "avatar": {
                    "type": "null",
                    "description": "Always `null`: the real avatar URL is stripped (field name kept, value replaced with null) because it is a URL leaf."
                  },
                  "rest_id": {
                    "type": "string"
                  },
                  "screen_name": {
                    "type": "string"
                  },
                  "blue_verified": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              "quotes": {
                "type": "number"
              },
              "replies": {
                "type": "number"
              },
              "retweets": {
                "type": "number"
              },
              "tweet_id": {
                "type": "string"
              },
              "bookmarks": {
                "type": "number"
              },
              "favorites": {
                "type": "number"
              },
              "created_at": {
                "type": "string"
              },
              "conversation_id": {
                "type": "string"
              }
            },
            "description": "The original post, present only when this post is a retweet.",
            "additionalProperties": false
          }
        },
        "additionalProperties": false
      },
      "description": "Posts in the list, newest first on every real call observed."
    }
  },
  "description": "The list timeline, as returned at routing.responseResultPath ($.output). `{}` when the list ID does not resolve (see invalid-list-id.json).",
  "additionalProperties": false
}

Pricing

Every real charge, itemised. A model that quietly omits one is a slow financial leak, so nothing here is rolled up, and a charge that only applies to some inputs says so rather than being added in.

Prices in this catalog are the provider's own list price, not your bill: Omnial MCP charges provider cost plus a platform markup on top, so what you are charged is higher than the figure shown. For the exact amount a specific call will cost, run omnial_execute with dry_run: true; that number includes the markup and is what we hold while the call runs. It is a quote, not a cap on the charge.

ChargeRate
Per call
Flat, regardless of what comes back
$0.0020475
Cost basis
Not recorded

This tool's catalog entry does not record how its final bill is determined, so we will not tell you whether its cost is fixed before the call or reported by the provider afterwards. Either way what is held is a quote rather than a cap: you are charged what the call actually costs, bounded at 2x the quote.

Updated
Sep 8, 2026