Catalog/fun-linkedin-ify

Fun

LinkedIn ify API

Rephrases a statement as an overpolished LinkedIn post with performative business energy.

Price$0.01per request
MethodPOST
Route/v1/fun/linkedin-ify
StatusLive
MIME typeapplication/json
Rate limit40/minute
Cache0s private
funcareerprofessionallinkedinperformative
API URLhttps://x402.hexl.dev/v1/fun/linkedin-ify
Integration docs
Example request
{
  "statement": "We shipped this feature after 3 meetings."
}
Example response
{
  "reframed": "Today I learned that 'We shipped this feature after 3 meetings.' is not merely an update. It is a lesson in resilience, alignment, and showing up when the roadmap gets spicy.",
  "hashtags": [
    "#Leadership",
    "#GrowthMindset",
    "#Execution",
    "#Learnings"
  ],
  "provider": "local-fallback"
}
Input schema
{
  "type": "object",
  "required": [
    "statement"
  ],
  "properties": {
    "statement": {
      "type": "string",
      "minLength": 1,
      "maxLength": 4000,
      "examples": [
        "We shipped this feature after 3 meetings."
      ]
    }
  }
}
Output schema
{
  "type": "object",
  "required": [
    "reframed",
    "hashtags",
    "provider"
  ],
  "properties": {
    "reframed": {
      "type": "string"
    },
    "hashtags": {
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "provider": {
      "type": "string"
    }
  }
}