Skip to main content

Response

The SEER platform returns responses in JSON format. The response body.data will contain the requested data if the request was successful.

structure​

The API response will have the following structure:

{
"sCode": <number>,
"timestamp": <string>,
"api": <string>,
"statusCode": <number>,
"message": <string>,
"version": <string>,
"data": <any>
}
  • sCode: The status code of the response. Please refer to the 'sCode' documentation below for more information
  • timestamp: The timestamp when the response was generated in ISO 8601 format.
  • api: The HTTP method and URL of the request.
  • statusCode: The HTTP status code of the response.
  • message: A brief description of the response.
  • version: The build version of the API.
  • data: The actual data returned by the API endpoint. Please note that the actual data may vary depending on the specific endpoint being called.