Get Analytics
GEThttps://public.api.mentaport.xyz/prod/v1/certificates/analytics
Get Analytics
Request
Query Parameters
projectId string
Example: b39707ac-ca85-4fc4-9220-27b118cc264d
certId string
Example: 0x34fcbcb971f841128f84480a10d2e773
queryDateStart stringrequired
Query start date
Example: 2024-09-30T07:00:00.000Z
queryDateEnd stringrequired
Query end date
Example: 2024-10-29T06:59:59.999Z
Header Parameters
x-api-key string
Example: {{_apiKeyDevMM}}
Responses
- 200
Successful response
- application/json
- Schema
Schema
Authorization: http
name: apikeyAuthtype: httpin:
- python
- curl
- csharp
- go
- nodejs
- ruby
- php
- java
- powershell
- dart
- javascript
- c
- objective-c
- ocaml
- r
- swift
- kotlin
- rust
- HTTP.CLIENT
- REQUESTS
import http.client
conn = http.client.HTTPSConnection("public.api.mentaport.xyz")
payload = ''
headers = {
'Accept': 'application/json'
}
conn.request("GET", "/prod/v1/certificates/analytics", payload, headers)
res = conn.getresponse()
data = res.read()
print(data.decode("utf-8"))
ResponseClear