Kick

Kick

Clip

per_call

Resolves a Kick clip URL into a structured clip record with title, category, view and like counts, duration, creation date, thumbnail and video URL, plus the clip creator and the channel the clip belongs to. Clips only. Handy for tracking which moments travel and for building highlight feeds around creators.

Endpoint

GET /v1/kick/clip

Price

$1.50

per 1,000 calls · $0.0015 per call

Cost per call

1 credit

Failed calls never charged

Parameters

url
required
string

The public Kick clip URL to resolve.

Example request

Sandbox calls return deterministic sample data in the live payload shape.

curl
curl "https://api.fastfetchz.com/v1/kick/clip?url=https%3A%2F%2Fkick.com%2Fxqc%3Fclip%3Dclip_01H9ZQ" \
  -H "X-API-Key: $FASTFETCHZ_KEY"

Example response

200 application/json
{
  "success": true,
  "service": {
    "platform": "Kick",
    "name": "Clip",
    "slug": "clip"
  },
  "credits_charged": 1,
  "credits_remaining": 99,
  "latency_ms": 214,
  "data": {
    "clip": {
      "id": "clip_01H9ZQ",
      "title": "Insane clutch play",
      "category": "Just Chatting",
      "view_count": 184902,
      "likes_count": 12408,
      "duration_sec": 41,
      "created_at": "2026-08-20T10:35:28.104Z",
      "thumbnail_url": "https://cdn.example.com/kick/clip/01H9ZQ.jpg",
      "video_url": "https://cdn.example.com/kick/clip/01H9ZQ.mp4",
      "clip_url": "nasa",
      "creator": {
        "username": "clipmaster",
        "display_name": "ClipMaster"
      },
      "channel": {
        "username": "xqc",
        "display_name": "xQc"
      }
    }
  }
}

Error codes

401invalid_api_keyMissing or unrecognized X-API-Key header. No credits are charged.
402insufficient_creditsYour balance is below the cost of the call. Top up to continue.
403account_suspended / key_revokedThe account is suspended or the key was revoked.
429rate_limitedThe key exceeded its monthly cap or the burst limit. Retry later.
500upstream_errorUnexpected failure while fulfilling the request. Not charged.