fix(docs): Fixed text length in markdown

This commit is contained in:
Данил 2025-01-17 15:49:28 +03:00
parent 9bc6c0a203
commit b6490ca65a
6 changed files with 37 additions and 21 deletions

View file

@ -41,10 +41,10 @@ Creating a currency rate chart.
```
### Query params
| Parameter | Description |
|----------------|-------------------------------------------------------------------------|
| `from_currency`* | `ISO 4217` code of the currency from which the conversion takes place |
| `conv_currency`* | `ISO 4217` code of the currency to which the conversion is performed |
| Parameter | Description |
|-------------------|-------------------------------------------------------------------------|
| `from_currency`* | `ISO 4217` code of the currency from which the conversion takes place |
| `conv_currency`* | `ISO 4217` code of the currency to which the conversion is performed |
### URL params
| Parameter | Description |
@ -70,7 +70,11 @@ Creating a currency rate chart.
=== "Curl"
```bash
curl --request GET \
--url https://kekkai-api.redume.su/api/getChart/?from_currency=RUB&conv_currency=USD&start_date=2024-10-31&end_date=2024-11-08
--url https://kekkai-api.redume.su/api/getChart/?
from_currency=RUB&
conv_currency=USD&
start_date=2024-10-31&
end_date=2024-11-08
```
=== "Python"
=== "Request"
@ -108,12 +112,12 @@ Creating a currency rate chart.
```
### Query params
| Parameter | Description |
|----------------|-------------------------------------------------------------------------|
| `from_currency`* | `ISO 4217` code of the currency from which the conversion takes place |
| `conv_currency`* | `ISO 4217` code of the currency to which the conversion is performed |
| `start_date`* | Start date of the period in the format `YYYYY-DD-MM` |
| `end_date`* | Period end date in the format `YYYYY-DD-MM` |
| Parameter | Description |
|------------------|------------------------------------------------------------------------|
| `from_currency`* | `ISO 4217` code of the currency from which the conversion takes place |
| `conv_currency`* | `ISO 4217` code of the currency to which the conversion is performed |
| `start_date`* | Start date of the period in the format `YYYYY-DD-MM` |
| `end_date`* | Period end date in the format `YYYYY-DD-MM` |
`*` - Required arguments

View file

@ -7,7 +7,8 @@ https://kekkai-api.redume.su/api/
## API Endpoints
Kekkai has 3 API endpoints: `getRate`, `getChart` and `configurations`. Below you will find a list of parameters that each endpoint requires and a description of what the API does.
Kekkai has 3 API endpoints: `getRate`, `getChart` and `configurations`.
Below you will find a list of parameters that each endpoint requires and a description of what the API does.
| Service | API Endpoint | Description |
|--------------|--------------------------------------------------------|--------------------------------------------------------------------|