Social Media Post

Social

Social media content with engagement metrics

Locale
EN
Fields
9
Uses
0
Sign in to use template

Schema fields

id uuid
likes integer
author name
shares integer
content paragraph
comments integer
hashtags array
image_url image_url
posted_at datetime

Schema definition

json
{
  "id": {
    "type": "uuid"
  },
  "likes": {
    "type": "integer",
    "options": {
      "max": 10000,
      "min": 0
    }
  },
  "author": {
    "type": "name"
  },
  "shares": {
    "type": "integer",
    "options": {
      "max": 1000,
      "min": 0
    }
  },
  "content": {
    "type": "paragraph",
    "options": {
      "sentences": 2
    }
  },
  "comments": {
    "type": "integer",
    "options": {
      "max": 500,
      "min": 0
    }
  },
  "hashtags": {
    "type": "array",
    "items": {
      "type": "word"
    },
    "options": {
      "max_items": 5,
      "min_items": 1
    }
  },
  "image_url": {
    "type": "image_url",
    "options": {
      "width": 800,
      "height": 600
    }
  },
  "posted_at": {
    "type": "datetime",
    "options": {
      "to": "2026-12-31",
      "from": "2025-01-01"
    }
  }
}

Example API call

terminal
curl -H "X-API-Key: YOUR_API_KEY" \
  "https://api.apiryner.com/v1/layouts/social-post?count=5&locale=en"