Get ISA trends for the specified date range or default lookback period
Args: request: FastAPI request object start_date: Optional start date in DD-MM-YY format end_date: Optional end date in DD-MM-YY format
Returns: ISA trend information
The Financial Analytics API provides comprehensive data analysis and insights for ISA investments and trading behavior. This powerful platform enables financial institutions, advisors, and analysts to access detailed metrics, trends, and recommendations through a simple, consistent REST API.
Access detailed analytics on Individual Savings Accounts (ISAs) including:
Comprehensive trading data analysis including:
All API requests require authentication using an API key which should be passed as a query parameter:
GET /isa/summary?api_key=your_api_key
Contact our team to obtain your API key and access credentials.
Our API offers different tiers of access:
All responses are returned in JSON format and follow a consistent structure:
{
"timestamp": "2024-03-20T12:00:00Z",
"data": {
// Response data specific to the endpoint
}
}
The API uses standard HTTP status codes to indicate the success or failure of requests:
Error responses include detailed information to help troubleshoot the issue:
{
"timestamp": "2024-03-20T12:00:00Z",
"error": "Validation Error",
"detail": "Invalid parameter: start_date must be in DD-MM-YY format"
}
The API uses a semantic versioning system (Major.Minor.Patch). The current version is 2.1.3.
This module provides analysis of ISA customer behavior patterns, including:
The Most Popular analysis endpoints provide insights into customer preferences:
The Behavioral Analysis API processes ISA calculator data to identify:
For a quick introduction to using the API, see the Quick Start Guide.
For details on authentication and security, see the Security Documentation.
For frequently asked questions about the API, see the FAQ.
curl -i -X GET \
'https://docs.tfe.ai/_mock/openapi/ISA/trends?end_date=string&start_date=string' \
-H 'X-API-Key: YOUR_API_KEY_HERE'
curl -i -X GET \
'https://docs.tfe.ai/_mock/openapi/ISA/isa-type?provider=string' \
-H 'X-API-Key: YOUR_API_KEY_HERE'
{ "status": "success", "message": "ISA type breakdown retrieved successfully", "timestamp": "2023-06-01T12:00:00Z", "data": { "date_range": "01-01-24 to 01-02-24", "isa_type": [ … ] } }