For the complete documentation index, see llms.txt. This page is also available as Markdown.

APILog

All api log endpoints

Get logs of all API v3 request

get
Authorizations
PRIVATE-TOKENstringRequired
Header parameters
RANGED-DATAstringRequired

Example header: RANGED-DATA:start=0,results=25

Responses
200

OK

application/json
get/v3/account/apiLog
GET /v3/account/apiLog HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
RANGED-DATA: text
Accept: */*
[
  {
    "request": {
      "url": "text",
      "method": "text",
      "header": {},
      "queryParameter": "text",
      "ipAddress": "text",
      "requestTimestamp": 1,
      "body": {}
    },
    "response": {
      "responseTime": 1,
      "code": 1,
      "body": {}
    }
  }
]

Get logs of all API v3 request for the given requestType

get
Authorizations
PRIVATE-TOKENstringRequired
Path parameters
requestTypestringRequired

The Http method that was used in the call. Possible values are {GET, POST, PUT and DELETE}

Header parameters
RANGED-DATAstringRequired

Example header: RANGED-DATA:start=0,results=25

Responses
200

OK

application/json
get/v3/account/apiLog/{requestType}
GET /v3/account/apiLog/{requestType} HTTP/1.1
Host: api.i3d.net
PRIVATE-TOKEN: YOUR_API_KEY
RANGED-DATA: text
Accept: */*
[
  {
    "request": {
      "url": "text",
      "method": "text",
      "header": {},
      "queryParameter": "text",
      "ipAddress": "text",
      "requestTimestamp": 1,
      "body": {}
    },
    "response": {
      "responseTime": 1,
      "code": 1,
      "body": {}
    }
  }
]

Last updated

Was this helpful?