ElectroNeek Documentation

Get the page limit

This returns the number of pages used as well as the limit set for the api key.


gethttps://api.electroneek.com/v1/intellidocs/limits

Try it

Sent from your browser straight to the API — nothing passes through this site, and the api key is kept in this tab only.
header parameters
cURL
curl --request GET \
  --url 'https://api.electroneek.com/v1/intellidocs/limits' \
  --header 'Content-Type: application/json'

Authentication

Use the API Key from your Document Stream. IntelliDocs is a single global API, so the key is not tied to a region — see managing API keys.

header parameters

NameTypeRequiredDescription
Content-Typestringno

Response

200Success
Example response
[
  {
    "total": 100
  },
  {
    "used": 0
  }
]
Updated