# Json To Testimonial Card — REST API endpoint `json-to-testimonial-card`

Generate a testimonial / review card from JSON such as {"quote","author","title","company","rating","date","highlighted"} in one of 6 templates. Returns the card three ways: inline-style HTML, Tailwind CSS markup, and a React JSX component.

- Category: data
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/json-to-testimonial-card/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/json-to-testimonial-card/
- Same tool on the other surface: https://findutils.com/mcp/json-to-testimonial-card/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/json-to-testimonial-card/execute \
  -H "Content-Type: application/json" \
  -d '{
    "json": "{\"quote\":\"This product transformed how our team collaborates.\",\"author\":\"Michael Chen\",\"title\":\"CTO\",\"company\":\"StartupXYZ\",\"rating\":5,\"highlighted\":true}"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/json-to-testimonial-card
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `json` | string | yes | Testimonial JSON: {"quote": string, "author": string, "title"?, "company"?, "avatar"?: url, "rating"?: integer 0-5, "date"?, "highlighted"?: boolean}. |
| `template` | string (classic \| modern \| dark \| bubble \| minimal \| gradient) | no | Card template. Default "classic". Default: `"classic"`. |

Example arguments (verified):

```json
{
  "json": "{\"quote\":\"This product transformed how our team collaborates.\",\"author\":\"Michael Chen\",\"title\":\"CTO\",\"company\":\"StartupXYZ\",\"rating\":5,\"highlighted\":true}"
}
```

Decoded `json` argument (readability only — send it as a string):

```json
{
  "quote": "This product transformed how our team collaborates.",
  "author": "Michael Chen",
  "title": "CTO",
  "company": "StartupXYZ",
  "rating": 5,
  "highlighted": true
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:json_to_testimonial_card`. Full MCP reference: https://findutils.com/mcp/json-to-testimonial-card/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
