# Json To Social Card — REST API endpoint `json-to-social-card`

Generate a social-media / Open Graph card (1200x630 aspect) from JSON such as {"title","description","author","date","siteName","tag","background","textColor"} 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-social-card/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/json-to-social-card/
- Same tool on the other surface: https://findutils.com/mcp/json-to-social-card/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/json-to-social-card/execute \
  -H "Content-Type: application/json" \
  -d '{
    "json": "{\"title\":\"How to Build Better Developer Tools\",\"description\":\"A guide to great DX.\",\"author\":\"Jane Developer\",\"date\":\"2024-01-15\",\"siteName\":\"DevBlog\",\"tag\":\"Engineering\"}"
  }'

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

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `json` | string | yes | Card JSON: {"title": string, "description"?, "author"?, "avatar"?: url, "date"?, "siteName"?, "logo"?: url, "background"?: css color, "textColor"?: css color, "tag"?}. |
| `template` | string (og-classic \| blog-post \| dark-modern \| gradient-hero \| minimal-clean \| brand-bold) | no | Card template. Default "og-classic". Default: `"og-classic"`. |

Example arguments (verified):

```json
{
  "json": "{\"title\":\"How to Build Better Developer Tools\",\"description\":\"A guide to great DX.\",\"author\":\"Jane Developer\",\"date\":\"2024-01-15\",\"siteName\":\"DevBlog\",\"tag\":\"Engineering\"}"
}
```

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

```json
{
  "title": "How to Build Better Developer Tools",
  "description": "A guide to great DX.",
  "author": "Jane Developer",
  "date": "2024-01-15",
  "siteName": "DevBlog",
  "tag": "Engineering"
}
```

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_social_card`. Full MCP reference: https://findutils.com/mcp/json-to-social-card/

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