Skip to main content
GET
/
v2
/
access
/
analytics
/
trials
/
top
Top trials
curl --request GET \
  --url https://api-next.ofauth.com/v2/access/analytics/trials/top \
  --header 'apiKey: <api-key>' \
  --header 'x-connection-id: <api-key>'
{
  "hasMore": true,
  "items": [
    {
      "id": 123,
      "trialLinkName": "<string>",
      "url": "<string>",
      "subscribeDays": 123,
      "subscribeCounts": 123,
      "claimCounts": 123,
      "expiredAt": "<string>",
      "createdAt": "<string>",
      "isFinished": true
    }
  ]
}

Authorizations

apiKey
string
header
required

Your OFAuth API key for authenticating requests.

x-connection-id
string
header
required

Requires a connection via the x-connection-id header.

Query Parameters

limit
integer
default:20

Number of items to return (1-100, default: 20)

Required range: 1 <= x <= 100
offset
integer | null
default:0

Number of items to skip (default: 0)

Required range: x >= 0
startDate

Start of date range (ISO 8601)

endDate

End of date range (ISO 8601)

Response

Successful response

hasMore
boolean
required
items
object[]
required