API Integrations

1. Overview

The FT Device Network Service provides RESTful APIs for accessing device network data and network scores. All endpoints are prefixed with /api.

2. Authentication

Currently, the API does not require authentication. This may change in future versions.

3. REST API

The complete REST API specification—including all endpoints, request and response schemas, and error definitions—is available via Swagger UI:

http://<API_SERVER_HOST>[:<PORT>]/api/swagger-ui/index.html#/

4. Error Responses

The API uses standard HTTP status codes and returns error responses in the following format:

{
  "code": 400,
  "message": "Error description",
  "data": "exceptionMessage"
}

Common error codes:

Status Code Description

400

Bad Request - Invalid parameters

404

Not Found - Resource not found

500

Internal Server Error

← Back | Main Page