Skip to content

Latest commit

 

History

History
64 lines (55 loc) · 1.39 KB

File metadata and controls

64 lines (55 loc) · 1.39 KB

FN - Discovery Search Service - Search Links

URL: https://fn-service-discovery-search-live-public.ogs.live.on.epicgames.com/api/v1/search
Method: POST
Auth Required: Yes (discovery:search:{accountId} READ)

{
  "namespace": "fortnite",
  "context": [],
  "locale": "en-US-POSIX",
  "search": "test",
  "orderBy": "globalCCU",
  "ratingAuthority": "",
  "rating": "",
  "page": 0
}

Parameters

namespace: fortnite
context: Unknown Array
locale: Language of your input
search: Search Query Input
orderBy: What key the entries should be ordered by
ratingAuthority: The Authority used by the client e.g. USK
rating: The Rating expected by the client for the given authority, e.g. USK_AGE_12 for USK 12+ page: Paging

Query Parameters

accountId: Your Account Id


Example Response

{
  "results": [
    {
      "linkCode": "1269-6181-1603",
      "isFavorite": false,
      "lastVisited": null,
      "globalCCU": 1,
      "score": 2.3827636,
      "lockStatus": "UNLOCKED",
      "lockStatusReason": "RATING_THRESHOLD",
      "isVisible": true
    },
    {
      "linkCode": "6608-3568-6843",
      "isFavorite": true,
      "lastVisited": 1700589249.54,
      "globalCCU": -1,
      "score": 1.5033565,
      "lockStatus": "LOCKED",
      "lockStatusReason": "RATING_THRESHOLD",
      "isVisible": true
    }
  ]
}