ToolAssay

Private ordered list/queue for an agent

Private ordered list/queue for an agent: push/pop/peek/range/length/clear, scoped to the paying wallet. For task queues, event logs, buffers.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1271 msmedian answer time
$0.001listed price per call
$0.001price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://agentbit.app/v1/memory/list

CategoryMarket data
Provider hostagentbit.app
Networkseip155:137, eip155:42161, eip155:480, eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.001 1271 ms

Example input (from the provider)

{
  "body": {
    "key": "task_queue",
    "operation": "push",
    "value": "summarize the Q3 report"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "description": {
      "type": "string"
    },
    "errors": {
      "items": {
        "properties": {
          "code": {
            "type": "string"
          },
          "description": {
            "type": "string"
          },
          "retryable": {
            "type": "boolean"
          },
          "status": {
            "type": "integer"
          }
        },
        "required": [
          "status",
          "code"
        ],
        "type": "object"
      },
      "type": "array"
    },
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "description": "Agent List (Queue) input. Private ordered list/queue for an agent: push/pop/peek/range/length/clear, scoped to the paying wallet. For task queues, event logs, buffers.",
          "properties": {
            "count": {
              "description": "For range: how many items (default 100).",
              "type": "integer"
            },
            "end": {
              "description": "Which end to push/pop/peek (default tail).",
              "enum": [
                "head",
                "tail"
              ],
              "type": "string"
            },
            "key": {
              "description": "The list name.",
              "type": "string"
            },
            "namespace": {
              "description": "Optional group (default \"default\").",
              "type": "string"
            },
            "operation": {
              "description": "What to do.",
              "enum": [
                "push",
                "pop",
                "peek",
                "range",
                "length",
                "clear"
              ],
              "type": "string"
            },
            "start": {
              "description": "For range: start index (negative counts from the end).",
              "type": "integer"
            },
            "ttl_seconds": {
              "description": "Optional expiry in seconds (max 90 days).",
              "type": "integer"
            },
            "value": {
              "description": "Any JSON value to push (for push)."
            }
          },
          "required": [
            "operation",
            "key"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "headers": {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "queryParams": {
          "additionalProperties": {
            "type": "string"
          },
          "type": "object"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "networks": {
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    },
    "pricing": {
      "properties": {
        "amount": {
          "type": [
            "number",
            "null"
          ]
        },
        "currency": {
          "type": "string"
        },
        "firstCallFree": {
          "type": "boolean"
        },
        "maxAmount": {
          "type": "number"
        },
        "model": {
          "type": "string"
        },
        "quoteHint": {
          "type": "string"
        },
        "volumeDiscounts": {
          "items": {
            "properties": {
              "minCalls30d": {
                "type": "integer"
              },
              "percent": {
                "type": "number"
              }
            },
            "required": [
              "minCalls30d",
              "percent"
            ],
            "type": "object"
          },
          "type": "array"
        }
      },
      "type": "object"
    },
    "provider": {
      "properties": {
        "category": {
          "enum": [
            "FINANCIAL_ANALYSIS",
            "DATA_ENRICHMENT",
            "INFRASTRUCTURE",
            "WEB_SEARCH_RESEARCH",
            "SOCIAL_INTELLIGENCE",
            "PREDICTION_MARKETS",
            "CREATIVE"
          ],
          "type": "string"
        },
        "description": {
          "type": "string"
        },
        "docsUrl": {
          "type": "string"
        },
        "name": {
          "type": "string"
        },
        "tags": {
          "items": {
            "type": "string"
          },
          "type": "array"
        },
        "website": {
          "type": "string"
        }
      },
      "required": [
        "name",
        "category"
      ],
      "type": "object"
    },
    "reliability": {
      "properties": {
        "measuredAt": {
          "type": "string"
        },
        "p50LatencyMs": {
          "type": [
            "integer",
            "null"
          ]
        },
        "p95LatencyMs": {
          "type": [
            "integer",
            "null"
          ]
        },
        "sampleSize": {
          "type": "integer"
        },
        "successRatePercent": {
          "type": "number"
        },
        "windowDays": {
          "type": "integer"
        }
      },
      "required": [
        "successRatePercent",
        "sampleSize",
        "windowDays"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON