# Json To Profile Card — REST API endpoint `json-to-profile-card`

Generate a profile card for team pages and portfolios from JSON such as {"name","title","company","location","email","bio","skills","social":{"twitter","github"}} 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-profile-card/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/json-to-profile-card/
- Same tool on the other surface: https://findutils.com/mcp/json-to-profile-card/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/json-to-profile-card/execute \
  -H "Content-Type: application/json" \
  -d '{
    "json": "{\"name\":\"Sarah Johnson\",\"title\":\"Senior Software Engineer\",\"company\":\"Tech Corp\",\"skills\":[\"React\",\"TypeScript\"],\"social\":{\"github\":\"sarahj\"}}"
  }'

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

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `json` | string | yes | Profile JSON: {"name": string, "title"?, "company"?, "location"?, "email"?, "avatar"?: url, "bio"?, "skills"?: string[], "social"?: {"twitter"?, "linkedin"?, "github"?, "website"?}, "coverColor"?: "#hex"}. |
| `template` | string (classic \| modern \| dark \| compact \| minimal \| gradient) | no | Card template. Default "classic". Default: `"classic"`. |

Example arguments (verified):

```json
{
  "json": "{\"name\":\"Sarah Johnson\",\"title\":\"Senior Software Engineer\",\"company\":\"Tech Corp\",\"skills\":[\"React\",\"TypeScript\"],\"social\":{\"github\":\"sarahj\"}}"
}
```

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

```json
{
  "name": "Sarah Johnson",
  "title": "Senior Software Engineer",
  "company": "Tech Corp",
  "skills": [
    "React",
    "TypeScript"
  ],
  "social": {
    "github": "sarahj"
  }
}
```

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

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