-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaapi-gateway.yml
More file actions
100 lines (100 loc) · 2.34 KB
/
Copy pathaapi-gateway.yml
File metadata and controls
100 lines (100 loc) · 2.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
openapi: 3.0.2
servers:
- url: /aapi
info:
version: 1.0.0
title: AAPI Gateway schema
paths:
/accountBalance:
post:
summary: Account balance in several chains
description: Returns geven address balance in all requested chains
operationId: getAccountBalance
responses:
'200':
description: Successful operation
content:
application/json:
schema:
$ref: '#/components/schemas/BalancesReply'
requestBody:
description: Address in several chains
required: true
content:
application/json:
schema:
$ref: '#/components/schemas/BalancesRequest'
components:
schemas:
BalancesRequest:
required:
- walletAddress
properties:
walletAddress:
type: string
example: "0x4675C7e5BaAFBFFbca748158bEcBA61ef3b0a263"
blockchain:
type: array
items:
type: string
blockHeight:
type: number
onlyWhitelisted:
type: boolean
nativeFirst:
type: boolean
pageSize:
type: string
pageToken:
type: string
type: object
Balance:
properties:
blockchain:
type: string
tokenName:
type: string
tokenSymbol:
type: string
tokenDecimals:
type: number
tokenType:
type: string
contractAddress:
type: string
holderAddress:
type: string
balance:
type: string
balanceRawInteger:
type: string
balanceUsd:
type: string
tokenPrice:
type: string
thumbnail:
type: string
type: object
BalancesReply:
required:
properties:
nextPageToken:
type: string
totalBalanceUsd:
type: string
totalCount:
type: number
assets:
type: array
items:
$ref: '#/components/schemas/Balance'
blockHeight:
type: number
type: object
requestBodies:
BalancesRequest:
content:
application/json:
schema:
$ref: '#/components/schemas/BalancesRequest'
description: Pet object that needs to be added to the store