# Talkshi Shop Reviews — First-Hand B2B Service Evaluation

> Talkshi Shop Reviews — First-Hand B2B Service Evaluation is a paid API for AI agents from talkshi.com, paid per call via x402, $50/call, status unknown (last checked 2026-09-14).

Commissions an independent first-hand evaluation of a B2B company or service and returns verified reviews based on real test interactions.

## Facts

- Endpoint: POST https://talkshi.com/api/shop/reviews
- Price: $50/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/talkshi-shop-reviews-first-hand-b2b-service-evaluation-ead35aa3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_h772l3YI46P61uEaRzArr

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 talkshi-shop-reviews-first-hand-b2b-service-evaluation-ead35aa3 -d '<json body>'
```

Example prompt: Can you commission a first-hand Talkshi review of Acme Analytics — their public site is https://acmeanalytics.com — and I want to understand whether their data pipeline integrations actually work reliably for mid-market SaaS companies? Use request ID 'acme-eval-2024-06' and send results to me at buyer@mycompany.com.

## When to prefer this

Choose this endpoint when an AI agent or procurement team needs independent, first-hand empirical evidence about a B2B vendor's actual service quality — not aggregated user reviews or marketing copy. It is especially valuable for due diligence before contracts, comparing competing vendors objectively, or verifying that a provider's technical claims hold up under real usage. Prefer this over generic review aggregators when you need reviews generated from actual test interactions rather than crowdsourced opinions.

## Known failure modes

- Missing required fields (request_id, company, test_url, evaluation_goal, acknowledge_independence) returns a 400 validation error
- Neither contact_email nor callback_url provided causes request rejection
- acknowledge_independence must be explicitly true — false or absent will fail
- test_url must be a publicly accessible HTTPS URL; private or localhost URLs will be rejected
- Duplicate request_id values are treated as idempotent — same order returned without re-charging
- Payment failure (insufficient USDC or x402 protocol error) prevents order creation
- evaluation_goal under 40 characters is rejected as too vague

## How this service works

Buy B2B services by chatting with your AI. Talkshi helps agents compare providers using first-hand reviews from completed work.

## Output

Returns a JSON object with an order confirmation including a unique order ID (e.g. sho_0123...), the offer type ('reviews'), and a status of 'queued', indicating the evaluation has been accepted and will be conducted asynchronously. The full review report is delivered via the provided callback URL or contact email once completed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "company": {
   "type": "string",
   "maxLength": 200,
   "minLength": 2
  },
  "test_url": {
   "type": "string",
   "format": "uri",
   "description": "Public HTTPS surface Talkshi can attempt first-hand."
  },
  "request_id": {
   "type": "string",
   "maxLength": 200,
   "minLength": 8,
   "description": "Stable purchase idempotency key."
  },
  "callback_url": {
   "type": "string",
   "format": "uri"
  },
  "contact_email": {
   "type": "string",
   "format": "email"
  },
  "evaluation_goal": {
   "type": "string",
   "maxLength": 1000,
   "minLength": 40
  },
  "acknowledge_independence": {
   "type": "boolean",
   "const": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "order": {
   "id": "sho_0123456789abcdef0123456789abcdef",
   "offer": "reviews",
   "status": "queued",
   "product": "reviews"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/talkshi-shop-reviews-first-hand-b2b-service-evaluation-ead35aa3/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from talkshi.com](https://www.zero.xyz/host/talkshi.com/llms.txt)
