TA Finance
  1. Auth check
TA Finance
  • Welcome!
  • Auth check
    • Check
      GET
  • Transactions
    • List
      GET
    • Create
      POST
    • Delete
      DELETE
  • Statements
    • Info
  • Counterparty
    • Info
  • Services
    • List
      GET
    • Create
      POST
  • Accounts
    • List
      GET
    • Create
      POST
  • Organizations
    • List
      GET
    • Create
      POST
  • Statistics
    • P&L
      POST
  1. Auth check

Check

GET
/api/v1/check
Validates API connectivity by returning a confirmation message that the service is operational. It also requires a valid bearer token for accessing protected resources.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200Success
application/json
Body

🟠401Failed
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/api/v1/check' \
--header 'Authorization: Bearer <token>'
Response Response Example
200 - Success
{
    "message": "API is working"
}
Modified at 2025-04-02 17:05:41
Previous
Welcome!
Next
List
Built with