# Questflow Twitter Agent

> Questflow Twitter Agent is a paid API for AI agents from api.questflow.ai, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Posts tweets, searches tweets, retrieves tweet details, and monitors Twitter user activity via a conversational agent interface

## Facts

- Endpoint: POST https://api.questflow.ai/x402/agent/qrn:agent:687df7dbb234010b7d331d0c
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/questflow-902af22f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__d0hPK_9Oj_oO2fhXaiK8

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability questflow-902af22f -d '<json body>'
```

Example prompt: Search Twitter for the 10 most recent tweets about artificial intelligence and show me what people are saying.

## When to prefer this

Use this endpoint when you need to interact with Twitter programmatically — posting tweets, searching for content by keyword, retrieving a user's latest tweets, or monitoring a tweet list — especially within an agentic workflow that accepts natural language instructions and pays per call via x402.

## Known failure modes

- Missing X-PAYMENT header returns 402 with payment requirements
- Invalid or missing 'input' field returns error
- Twitter API rate limits may cause failures
- Unrecognized action in input message may yield unhelpful response
- Payment insufficient or wrong asset causes rejection

## How this service works

Twitter agent enables users to post and interact with messages known as "tweets." Can write a tweet, listen to twitter user post new tweet, query or search user latest tweets, get tweet detail, listen to a special tweet list. | Powered by Questflow

## Output

A natural language response from the Twitter agent containing the requested tweet data, search results, posted tweet confirmation, or tweet details depending on the action performed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "string",
   "description": "Your message to the agent"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "response": {
  "type": "string",
  "required": true,
  "description": "Response from the agent"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/questflow-902af22f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.questflow.ai](https://www.zero.xyz/host/api.questflow.ai/llms.txt)
