Providers

Handle liquidity providers section. gets information about connected liquidities,update them.

get-lp-list

Returns a list of liquidity providers from the DB.

SecurityAuthorization
Request
header Parameters
Authorization
required
string

auth header for JWT

Example: <JWT token>
username
required
string

auth header for username

Example: <username>
Responses
200

Success

401

Unauthorized

403

Forbidden

get/providers
Response samples
application/json
{
  • "api_message": "<string>",
  • "api_data": [
    ]
}

get-exact-lp

getting the exact liquidity provider by ID

SecurityAuthorization
Request
path Parameters
provider_id
required
string

provider_id path parameter

Example: <provider_id>
header Parameters
Authorization
required
string

auth header for JWT

Example: <JWT token>
username
required
string

auth header for username

Example: <username>
Responses
200

Success

401

Unauthorized

403

Forbidden

404

Not Found

get/providers/{provider_id}
Response samples
application/json
{
  • "api_message": "<string>",
  • "api_data": {
    }
}