Skip to content

API Count

Legacy serverless endpoint — not available on the v3 REST API

getApiCount is not served by the v3 REST API. Requests to the primary host (https://api-sandboxdash.norcapsecurities.com/v3/getApiCount) fail with a permission error. The endpoint is only reachable on the legacy serverless host (https://tapi-sandboxdash.norcapsecurities.com in sandbox, https://tapi.norcapsecurities.com in production), without a /v3 path prefix. The serverless surface is deprecated and being retired, and this endpoint has no v3 replacement.

All requests require clientID and developerAPIKey parameters for authentication.

Base URL: https://tapi-sandboxdash.norcapsecurities.com

Endpoints


POST /getApiCount

This method will provide the API count for the current month (midnight UTC on the 1st to current day)

Example Request

curl -k -X POST https://tapi-sandboxdash.norcapsecurities.com/getApiCount
 -d developerAPIKey=somedeveloperkey
 -d clientID=someclientid

Response

Field Type Description
APICountDetails object API count details (clientId, apiCount)
clientId string TransactAPI Client ID
apiCount string Total number of API calls for the current month, formatted with thousands separators

Example Response

{
  "statusCode": "101",
  "statusDesc": "Ok",
  "APICountDetails": {
    "clientId": "someclientid",
    "apiCount": "1,058"
  }
}