- Documentation
- API Reference
- Projects
- importer.vidinfra.com
- Auth
- User Registration
- User Login
- Verify-email
- Forgot Password
- Forgot Password Verify OTP
- Forgot Password Set
- Resend OTP
- Logout
- Set Password
- Check Account exists
- Update Password
- Google Oauth Redirect
- Google Oauth Callback
- api-access-check
- New Auth token using Refresh token
- Github Oauth Redirect
- Google Oauth Callback Copy
- Get User Sessions
- Delete User Sessions
- User
- Organization
- Organization's invitations
- Audits
- Members
- API Keys
- Folders
- Videos
- Video Metas
- Video Captions
- Video Chapter
- Uploads
- Tags
- Players
- Webhook Endpoints
- Advertisements
- Webhook Event Logs
- Analytics Direct Api
- geo-distributionGET
- Project ViewsGET
- avg video watch POST
- Total watch TimePOST
- Project Avg Watch per Unique userPOST
- Total Player Error GET
- project popularity-analysisGET
- Project Collection InsightsPOST
- Collection ViewsPOST
- Collection avg Watch timePOST
- Collection Avg Watch per unique userPOST
- Collection Geo DistributionPOST
- Get all UsersGET
- User media viewsPOST
- User Avg video watchPOST
- user Player logPOST
- user sessionsPOST
- Get all VideoGET
- video Player error POST
- Video ViewPOST
- video Geo DistributionPOST
- video Avg watchPOST
- copyPOST
- Streams
- Stream Metas
- Usages
- Encoding profile
- Project Matrics
- Access Control
- Analytics
- Project Get geo-distribution
- project views
- Project avg video watch
- Project Total Watch
- Project Avg Watch per Unique user
- Project All Player Errors
- Project Popularity Analysis
- Project Collections insights
- Collection Geo Distribution
- Collection avg watch time
- Collection avg watch per unique User
- Collection Player error
- Video Geo Distribution
- Video views
- Video Avg Watch
- Video Player Log
- User
- User Avg Video Watch
- User Total Watch
- User player error log
- Plan
- Upload Tokens
- subscribe
- Transaction
- Invoice
- vimeo video importer
- test
- transcoding service
- transcoding service v2
- Welcome to vidinfraGET
- health checkGET
- Regions ListGET
- keyPOST
- Untitled EndpointGET
Project Collection Insights
Developing
POST
https://gotipath-stream.analytics.gotipath.com/report/v1/66a1084b-4b6b-4001-a4ad-d34d13463068/dataset
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Body Params application/json
object {0}
Example
{
"end_time": "2024-03-02T17:59:59.999Z",
"filters": [],
"group_bys": [
"media_series"
],
"metrics": [
{
"filters": [],
"group_bys": [],
"name": "total_media_views"
},
{
"filters": [],
"group_bys": [],
"name": "total_active_media_plays"
}
],
"start_time": "2024-02-24T17:59:59.999Z"
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://gotipath-stream.analytics.gotipath.com/report/v1/66a1084b-4b6b-4001-a4ad-d34d13463068/dataset' \
--header 'Content-Type: application/json' \
--data-raw '{
"end_time": "2024-03-02T17:59:59.999Z",
"filters": [],
"group_bys": [
"media_series"
],
"metrics": [
{
"filters": [],
"group_bys": [],
"name": "total_media_views"
},
{
"filters": [],
"group_bys": [],
"name": "total_active_media_plays"
}
],
"start_time": "2024-02-24T17:59:59.999Z"
}'
Responses
🟢200OK
application/json
Body
message
stringÂ
required
result
objectÂ
required
metrics
array [object {4}]Â
required
group_bys
array[string]
required
filters
array[string]
required
Example
{"message":"Dataset retrieved successfully","result":{"metrics":[{"name":"total_media_views","group_bys":["media_series"],"filters":null,"data":[{"media_series":"","total_media_views":2},{"media_series":"16c11ef9-a3e1-4e5c-8df3-e6428684f905","total_media_views":3},{"media_series":"384bf2ba-1fcb-4de8-9411-6d68000eb3c7","total_media_views":7413},{"media_series":"95d133c7-b8b3-4f05-b1c5-a99baab77bd7","total_media_views":2},{"media_series":"984cac9e-0f97-4acc-a7f8-fbdf41773736","total_media_views":3},{"media_series":"c2ffaea1-c967-4672-b5bc-789144d58b3d","total_media_views":207},{"media_series":"d73529b3-a572-4d08-b726-61e469f40d7d","total_media_views":30}]},{"name":"total_active_media_plays","group_bys":["media_series"],"filters":null,"data":[{"media_series":"384bf2ba-1fcb-4de8-9411-6d68000eb3c7","total_active_media_plays":19},{"media_series":"d73529b3-a572-4d08-b726-61e469f40d7d","total_active_media_plays":1}]}],"group_bys":["media_series"],"filters":[]}}