Cassie Clip Logo

Cassie Clip API

v1.0

GET /item-shop/image

Returns the image URL for today’s Fortnite shop.

Example Request:

curl -X GET https://api.cassieclip.xyz/v1/item-shop/image

Example Response:

{
  "statusCode": 200,
  "data": {
    "url": "https://cdn.cassieclip.xyz/shop/image.png"
  }
}

GET /v1/season

Returns current season info for stw/br.

Example Request:

curl -X GET https://api.cassieclip.xyz/v1/season

Example Response:

{
  "statusCode": 200,
  "data": {
    "br": {
        "seasonNumber": 35,
        "seasonBegin": "2025-04-25T13:00:00Z",
        "seasonEnd": "2025-06-13T13:00:00Z"
    },
    "stw": {
        "stwWeeklyStoreEnd": "2025-05-29T00:00:00.000Z",
        "stwEventStoreEnd": "2025-06-19T00:00:00.000Z"
    }
  }
}

POST /v1/stw-lookup

Returns users stw account info by their account id.

Example Request:

curl -X POST https://api.cassieclip.xyz/v1/stw/lookup?account_id=123

Example Success Response:

{
  "statusCode": 200,
  "data": {
    "AccountInfo": {
        "displayName": "CassieClip",
        "account_id": "2323sd",
        "PowerLevel": 130
    },
    "DailyQuests": {
        "quests": [...]
    },
    "AccountResource": {
        ...
    },
    "Achievements": {
        ...
    }
  }
}

Example Error Response (Account Not Found):

{
  "statusCode": 404,
  "errorCode": "error.xyz.cassieclip.account.account_not_found",
}

GET /v1/catalog

Returns fortnite catalog.

Example Request:

curl -X GET https://api.cassieclip.xyz/v1/catalog

Example Response:

{
  "statusCode": 200,
  "data": [
    ...
  ]  
}

GET /v1/stats

Returns users stw account info by their account id.

Example Request:

curl -X GET https://api.cassieclip.xyz/v1/stats?account_id=123

Example Success Response:

{
  "statusCode": 200,
  "data": {
    "displayName": "CassieClip",
    "account_id": "asdas2312",
    "ranked_br": {
      "rank": "Unreal"
      ...
    },
    "ranked_zb": {
      "rank": "Unreal"
      ...
    }
    "reload_br": {
      "rank": "Unreal"
      ...
    },
    "reload_zb": {
      "rank": "Unreal"
      ...
    },
    "og_ranked_br": {
      "rank": "Unreal"
      ...
    },
    "og_ranked_zb": {
      "rank": "Unreal"
      ...
    }
}

Example Error Response (Account Not Found):

{
  "statusCode": 404,
  "errorCode": "error.xyz.cassieclip.account.account_not_found",
}