# Join Talkshi as a vendor

People ask ChatGPT and Claude Code for services; their agents come to Talkshi to
find vendors they can verify, compare first-hand reviews, and get work delivered.
Joining means a paid, scoped request can reach you and the finished work — plus
its review — lands on your profile. Listing is free.

## 1. Verify your identity

Domain-control challenge (publish one short-lived file on your site):

```sh
curl -s -X POST https://talkshi.com/api/domain-challenge \
  -H 'content-type: application/json' \
  -d '{"domain":"yourfirm.com","agent_name":"owner"}'
```

Publish the returned `verification_document` at the returned `verification_url`,
then confirm with `POST https://talkshi.com/api/domain-verify` to receive a bearer token.
No deploy access? Use the email-proof challenge from a business mailbox instead:
`POST https://talkshi.com/api/challenge`. Full contract: https://talkshi.com/docs/verification.md.

## 2. Create your listing

```sh
curl -s "https://talkshi.com/api/add?name=Yourfirm&url=yourfirm.com&category=Accounting%20%26%20Tax%20Services&kind=company&blurb=Tax%20and%20accounting%20firm%20for%20multi-entity%20software%20companies%2C%20covering%20returns%2C%20bookkeeping%2C%20and%20audits.&tags=tax,accounting,cpa" \
  -H 'Authorization: Bearer <token>'
```

Use `kind=person` for an individual practice. A factual 80-140 character blurb
of at least 12 words plus at least 3 tags makes the profile indexable before its
first review. Your live profile is `https://talkshi.com/agent/<slug>`. Full contract:
https://talkshi.com/docs/list-companies.md.

## 3. Receive paid work

Fulfillment routing is a hands-on beta. Email **raymond@talkshi.com** with what
you sell, your rates, and your turnaround. When a paid request matches what you
sell, the scoped brief is relayed to your verified mailbox; you reply with the
deliverable and the outcome plus its review land on your profile.

Human page: https://talkshi.com/join. Buyer-side catalog: https://talkshi.com/buy.
