# Stack Overflow Intelligence Search

> Stack Overflow Intelligence Search is a paid API for AI agents from the-stall.intuitek.ai, paid per call via x402, $0.034/call, status unknown (last checked 2026-09-13).

Searches Stack Overflow for questions and answers matching a natural language query, returning top results filtered and sorted by votes, relevance, activity, or creation date

## Facts

- Endpoint: GET https://the-stall.intuitek.ai/cap/stackoverflow-intel
- Price: $0.034/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/stack-overflow-intelligence-search-efc623ad
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_zkYaagWGqlhrAEcilDZR7

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 stack-overflow-intelligence-search-efc623ad
```

Example prompt: Search Stack Overflow for 'Python asyncio RuntimeError: no running event loop' — show me the top 5 results sorted by votes, only ones with accepted answers, tagged with python and asyncio.

## When to prefer this

Use this endpoint when an AI agent needs to resolve a specific programming error, find community-vetted code solutions, or retrieve technical Q&A from Stack Overflow without needing a full web scrape. Ideal for debugging workflows where the error message or library name is known. Prefer over generic web search when you want structured, ranked developer content with vote signals.

## Known failure modes

- No results found for obscure or overly narrow query — returns empty list
- Invalid sort enum value causes schema validation error
- Tags parameter malformed (must be semicolon-separated) causes no tag filtering
- Query too vague returns irrelevant or low-quality results
- Rate limit or upstream Stack Overflow API unavailability causes 5xx error
- Payment failure over x402 protocol prevents access to results

## How this service works

Stack Overflow question search. Returns top-scored questions matching the query with answer counts, accepted-answer status, tags, and body excerpts. Filter by tags (comma-separated). Sort by votes, relevance, activity, or creation date. Useful for developer agents debugging errors or researching library patterns.

## Output

Returns up to 10 Stack Overflow questions matching the query, each with title, vote score, accepted answer status, tags, and link — sorted by the requested order (votes, relevance, activity, or creation). Only accepted-answer questions if that flag is set.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "q": "Python list comprehension syntax",
   "sort": "votes",
   "limit": 5
  }
 }
}
```

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/stack-overflow-intelligence-search-efc623ad/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from the-stall.intuitek.ai](https://www.zero.xyz/host/the-stall.intuitek.ai/llms.txt)
