GET
/
api
/
v1
/
status
curl --request GET \
  --url https://integration-api.getfront.com/api/v1/status \
  --header 'X-Client-Id: <api-key>' \
  --header 'X-Client-Secret: <api-key>'
{
  "content": [
    {
      "type": "robinhood",
      "name": "Robinhood",
      "isUp": true,
      "supportedProducts": [
        "balance",
        "holdings",
        "identity",
        "orders",
        "transfers"
      ]
    },
    {
      "type": "celsius",
      "name": "Celsius",
      "isUp": false,
      "description": "Temporarily disabled",
      "downTimeStart": 1655891444,
      "supportedProducts": [
        "balance",
        "orders",
        "transfers",
        "holdings"
      ]
    },
    {
      "type": "deFiWallet",
      "name": "MetaMask",
      "isUp": false,
      "supportedProducts": [
        "transfers",
        "holdings"
      ],
      "deFiWalletData": {
        "id": "00000000-0000-0000-0000-000000000000",
        "name": "MetaMask"
      }
    }
  ],
  "status": "ok",
  "message": "",
  "errorType": ""
}

Authorizations

X-Client-Secret
string
header
required

Contact Front to get client Secret

X-Client-Id
string
header
required

Contact Front to get client Id

Response

200
application/json
Success
status
enum<string>
Available options:
ok,
serverFailure,
permissionDenied,
badRequest,
notFound,
conflict,
tooManyRequest,
locked
message
string | null

A message generated by the API

displayMessage
string | null

User-friendly display message that can be presented to the end user

errorType
string | null

Strictly-typed error type that is explaining the reason of an unsuccessful status of the operation. All possible error types are available in the documentation.

content
object[] | null