· 4 years ago · Apr 22, 2021, 08:46 AM
1{
2 "swagger" : "2.0",
3 "info" : {
4 "version" : "1.0.2",
5 "title" : "Interactive Gbl API",
6 "description" : "gbl",
7 "termsOfService" : "",
8 "license" : {
9 "name" : "Apache 2.0",
10 "url" : "http://www.apache.org/licenses/LICENSE-2.0.html"
11 }
12 },
13 "host" : "gbl.app",
14 "basePath" : "/",
15 "schemes" : [ "https", "http" ],
16 "consumes" : [ "application/json" ],
17 "produces" : [ "application/json" ],
18 "paths" : {
19 "/get_version" : {
20 "get" : {
21 "summary" : "get version of Gbl",
22 "description" : "Returns version information of connected Gbl node/websocket.\n",
23 "tags" : [ "Condenser Api" ],
24 "responses" : {
25 "200" : {
26 "description" : "Result",
27 "schema" : {
28 "$ref" : "#/definitions/get_version"
29 }
30 },
31 "default" : {
32 "description" : "Unexpected error",
33 "schema" : {
34 "$ref" : "#/definitions/Error"
35 }
36 }
37 }
38 }
39 },
40 "/get_volume" : {
41 "get" : {
42 "summary" : "get volume marketing history",
43 "description" : "Returns the market volume for the past 24 hours.\n",
44 "tags" : [ "Market History Api", "Condenser Api" ],
45 "responses" : {
46 "200" : {
47 "description" : "Result",
48 "schema" : {
49 "type" : "array",
50 "items" : {
51 "$ref" : "#/definitions/_"
52 }
53 }
54 },
55 "default" : {
56 "description" : "Unexpected error",
57 "schema" : {
58 "$ref" : "#/definitions/Error"
59 }
60 }
61 }
62 }
63 },
64 "/get_vesting_delegations" : {
65 "get" : {
66 "summary" : "get vesting delegations",
67 "description" : "Returns the vesting delegations by an account. Parameters: delegator_account:string; start_account:string; limit:int up to 1000\n",
68 "parameters" : [ {
69 "name" : "delegator_account",
70 "in" : "query",
71 "description" : "Queries up to 10 vesting delegations by “Gblit”.",
72 "required" : true,
73 "type" : "string",
74 "format" : "string",
75 "default" : "Gblit"
76 }, {
77 "name" : "start_account",
78 "in" : "query",
79 "required" : true,
80 "type" : "string",
81 "format" : "string",
82 "default" : null
83 }, {
84 "name" : "limit",
85 "in" : "query",
86 "description" : "limit.",
87 "required" : true,
88 "type" : "number",
89 "format" : "number",
90 "default" : 10
91 } ],
92 "tags" : [ "Condenser Api" ],
93 "responses" : {
94 "200" : {
95 "description" : "Result",
96 "schema" : {
97 "type" : "array",
98 "items" : {
99 "$ref" : "#/definitions/_"
100 }
101 }
102 },
103 "default" : {
104 "description" : "Unexpected error",
105 "schema" : {
106 "$ref" : "#/definitions/Error"
107 }
108 }
109 }
110 }
111 },
112 "/get_account_count" : {
113 "get" : {
114 "summary" : "number of accounts",
115 "description" : "Get Number of Accounts from Gbl\n",
116 "tags" : [ "Condenser Api" ],
117 "responses" : {
118 "200" : {
119 "description" : "Result",
120 "schema" : {
121 "type" : "integer",
122 "items" : {
123 "$ref" : "#/definitions/get_account_count"
124 }
125 }
126 },
127 "default" : {
128 "description" : "Unexpected error",
129 "schema" : {
130 "$ref" : "#/definitions/Error"
131 }
132 }
133 }
134
135 }
136 },
137 "/get_chain_properties" : {
138 "get" : {
139 "summary" : "get chain properties",
140 "description" : "get chain properties\n",
141 "responses" : {
142 "200" : {
143 "description" : "Result",
144 "schema" : {
145 "type" : "array",
146 "items" : {
147 "$ref" : "#/definitions/_"
148 }
149 }
150 },
151 "default" : {
152 "description" : "Unexpected error",
153 "schema" : {
154 "$ref" : "#/definitions/Error"
155 }
156 }
157 },
158 "tags" : [ "Condenser Api" ]
159 }
160 },
161 "/get_community" : {
162 "get" : {
163 "summary" : "get community",
164 "description" : "get community\n",
165 "parameters" : [ {
166 "name" : "name",
167 "in" : "query",
168 "required" : true,
169 "type" : "string",
170 "format" : "string",
171 "default" : "hive-125125"
172 }, {
173 "name" : "observer",
174 "in" : "query",
175 "required" : true,
176 "type" : "string",
177 "format" : "string",
178 "default" : "alice"
179 } ],
180 "tags" : [ "Bridge" ],
181 "responses" : {
182 "200" : {
183 "description" : "Result",
184 "schema" : {
185 "type" : "array",
186 "items" : {
187 "$ref" : "#/definitions/_"
188 }
189 }
190 },
191 "default" : {
192 "description" : "Unexpected error",
193 "schema" : {
194 "$ref" : "#/definitions/Error"
195 }
196 }
197 }
198 }
199 },
200 "/get_ranked_posts" : {
201 "get" : {
202 "summary" : "get ranked posts in community",
203 "description" : "get ranked posts in community\nsort could be:\ntrending\nhot\ncreated\npromoted\npayout\npayout_comments\nmuted\n",
204 "parameters" : [ {
205 "name" : "sort",
206 "in" : "query",
207 "required" : true,
208 "type" : "string",
209 "format" : "string",
210 "default" : "trending"
211 }, {
212 "name": "tag",
213 "in": "query",
214 "required": false,
215 "type": "string",
216 "format": "string",
217 "default": ""
218 }, {
219 "name" : "observer",
220 "in" : "query",
221 "required" : true,
222 "type" : "string",
223 "format" : "string",
224 "default" : "alice"
225 } ],
226 "tags" : [ "Bridge" ],
227 "responses" : {
228 "200" : {
229 "description" : "Result",
230 "schema" : {
231 "type" : "array",
232 "items" : {
233 "$ref" : "#/definitions/_"
234 }
235 }
236 },
237 "default" : {
238 "description" : "Unexpected error",
239 "schema" : {
240 "$ref" : "#/definitions/Error"
241 }
242 }
243 }
244 }
245 },
246 "/list_all_subscriptions" : {
247 "get" : {
248 "summary" : "List all subscriptions to a community for an account.",
249 "description" : "",
250 "parameters" : [ {
251 "name" : "account",
252 "in" : "query",
253 "required" : true,
254 "type" : "string",
255 "format" : "string",
256 "default" : "eGblapp"
257 }],
258 "tags" : [ "Bridge" ],
259 "responses" : {
260 "200" : {
261 "description" : "Result",
262 "schema" : {
263 "type" : "array",
264 "items" : {
265 "$ref" : "#/definitions/_"
266 }
267 }
268 },
269 "default" : {
270 "description" : "Unexpected error",
271 "schema" : {
272 "$ref" : "#/definitions/Error"
273 }
274 }
275 }
276 }
277 },
278 "/list_community_roles" : {
279 "get" : {
280 "summary" : "List community roles and labels for each account in the community.",
281 "description" : "",
282 "parameters" : [ {
283 "name" : "community",
284 "in" : "query",
285 "required" : true,
286 "type" : "string",
287 "format" : "string",
288 "default" : "hive-125125"
289 }],
290 "tags" : [ "Bridge" ],
291 "responses" : {
292 "200" : {
293 "description" : "Result",
294 "schema" : {
295 "type" : "array",
296 "items" : {
297 "$ref" : "#/definitions/_"
298 }
299 }
300 },
301 "default" : {
302 "description" : "Unexpected error",
303 "schema" : {
304 "$ref" : "#/definitions/Error"
305 }
306 }
307 }
308 }
309 },
310 "/account_notifications" : {
311 "get" : {
312 "summary" : "Account notifications.",
313 "description" : "",
314 "parameters" : [ {
315 "name" : "account",
316 "in" : "query",
317 "required" : true,
318 "type" : "string",
319 "format" : "string",
320 "default" : "alice"
321 }, {
322 "name" : "limit",
323 "in" : "query",
324 "required" : true,
325 "type" : "number",
326 "format" : "number",
327 "default" : 10
328 } ],
329 "tags" : [ "Bridge" ],
330 "responses" : {
331 "200" : {
332 "description" : "Result",
333 "schema" : {
334 "type" : "array",
335 "items" : {
336 "$ref" : "#/definitions/_"
337 }
338 }
339 },
340 "default" : {
341 "description" : "Unexpected error",
342 "schema" : {
343 "$ref" : "#/definitions/Error"
344 }
345 }
346 }
347 }
348 },
349 "/get_config" : {
350 "get" : {
351 "summary" : "get config",
352 "description" : "get config\n",
353 "tags" : [ "Condenser Api" ],
354 "responses" : {
355 "200" : {
356 "description" : "Result",
357 "schema" : {
358 "type" : "array",
359 "items" : {
360 "$ref" : "#/definitions/_"
361 }
362 }
363 },
364 "default" : {
365 "description" : "Unexpected error",
366 "schema" : {
367 "$ref" : "#/definitions/Error"
368 }
369 }
370 }
371 }
372 },
373 "/get_dynamic_global_properties" : {
374 "get" : {
375 "summary" : "get_dynamic_global_properties",
376 "description" : "get_dynamic_global_properties\n",
377 "tags" : [ "Condenser Api" ],
378 "responses" : {
379 "200" : {
380 "description" : "Result",
381 "schema" : {
382 "type" : "array",
383 "items" : {
384 "$ref" : "#/definitions/_"
385 }
386 }
387 },
388 "default" : {
389 "description" : "Unexpected error",
390 "schema" : {
391 "$ref" : "#/definitions/Error"
392 }
393 }
394 }
395 }
396 },
397 "/get_feed" : {
398 "get" : {
399 "summary" : "get_feed",
400 "description" : "Returns a list of items in an account’s feed. Parameters: account:string; start_entry_id:int; limit:int up to 500\n",
401 "parameters" : [ {
402 "name" : "account",
403 "in" : "query",
404 "description" : "Queries the account named Gblit starting on the first item, up to 1 result.",
405 "required" : true,
406 "type" : "string",
407 "format" : "string",
408 "default" : "Gblit"
409 }, {
410 "name" : "start_entry_id",
411 "in" : "query",
412 "description" : "limit.",
413 "required" : true,
414 "type" : "number",
415 "format" : "number",
416 "default" : "10"
417 }, {
418 "name" : "limit",
419 "in" : "query",
420 "description" : "limit.",
421 "required" : true,
422 "type" : "number",
423 "format" : "number",
424 "default" : 10
425 } ],
426 "tags" : [ "Condenser Api", "Follow Api" ],
427 "responses" : {
428 "200" : {
429 "description" : "Result",
430 "schema" : {
431 "type" : "array",
432 "items" : {
433 "$ref" : "#/definitions/_"
434 }
435 }
436 },
437 "default" : {
438 "description" : "Unexpected error",
439 "schema" : {
440 "$ref" : "#/definitions/Error"
441 }
442 }
443 }
444 }
445 },
446 "/get_feed_entries" : {
447 "get" : {
448 "summary" : "get_feed_entries",
449 "description" : "Returns a list of items in an account’s feed. Parameters: account:string; start_entry_id:int; limit:int up to 500\n",
450 "parameters" : [ {
451 "name" : "account",
452 "in" : "query",
453 "description" : "Queries the account named Gblit starting on the first item, up to 1 result.",
454 "required" : true,
455 "type" : "string",
456 "format" : "string",
457 "default" : "good-kar"
458 }, {
459 "name" : "start_entry_id",
460 "in" : "query",
461 "description" : "limit.",
462 "required" : true,
463 "type" : "number",
464 "format" : "number",
465 "default" : "10"
466 }, {
467 "name" : "limit",
468 "in" : "query",
469 "description" : "limit.",
470 "required" : true,
471 "type" : "number",
472 "format" : "number",
473 "default" : 10
474 } ],
475 "tags" : [ "Condenser Api", "Follow Api" ],
476 "responses" : {
477 "200" : {
478 "description" : "Result",
479 "schema" : {
480 "type" : "array",
481 "items" : {
482 "$ref" : "#/definitions/_"
483 }
484 }
485 },
486 "default" : {
487 "description" : "Unexpected error",
488 "schema" : {
489 "$ref" : "#/definitions/Error"
490 }
491 }
492 }
493 }
494 },
495 "/get_feed_history" : {
496 "get" : {
497 "summary" : "get_feed_history",
498 "description" : "Returns the history of price feed values.\n",
499 "tags" : [ "Condenser Api" ],
500 "responses" : {
501 "200" : {
502 "description" : "Result",
503 "schema" : {
504 "type" : "array",
505 "items" : {
506 "$ref" : "#/definitions/_"
507 }
508 }
509 },
510 "default" : {
511 "description" : "Unexpected error",
512 "schema" : {
513 "$ref" : "#/definitions/Error"
514 }
515 }
516 }
517 }
518 },
519 "/get_current_median_history_price" : {
520 "get" : {
521 "summary" : "get_current_median_history_price",
522 "description" : "get_current_median_history_price\n",
523 "tags" : [ "Condenser Api" ],
524 "responses" : {
525 "200" : {
526 "description" : "Result",
527 "schema" : {
528 "type" : "array",
529 "items" : {
530 "$ref" : "#/definitions/_"
531 }
532 }
533 },
534 "default" : {
535 "description" : "Unexpected error",
536 "schema" : {
537 "$ref" : "#/definitions/Error"
538 }
539 }
540 }
541 }
542 },
543 "/get_hardfork_version" : {
544 "get" : {
545 "summary" : "get_hardfork_version",
546 "description" : "get_hardfork_version\n",
547 "tags" : [ "Condenser Api" ],
548 "responses" : {
549 "200" : {
550 "description" : "Result",
551 "schema" : {
552 "type" : "array",
553 "items" : {
554 "$ref" : "#/definitions/_"
555 }
556 }
557 },
558 "default" : {
559 "description" : "Unexpected error",
560 "schema" : {
561 "$ref" : "#/definitions/Error"
562 }
563 }
564 }
565 }
566 },
567 "/get_next_scheduled_hardfork" : {
568 "get" : {
569 "summary" : "get_next_scheduled_hardfork",
570 "description" : "get_next_scheduled_hardfork\n",
571 "tags" : [ "Condenser Api" ],
572 "responses" : {
573 "200" : {
574 "description" : "Result",
575 "schema" : {
576 "type" : "array",
577 "items" : {
578 "$ref" : "#/definitions/_"
579 }
580 }
581 },
582 "default" : {
583 "description" : "Unexpected error",
584 "schema" : {
585 "$ref" : "#/definitions/Error"
586 }
587 }
588 }
589 }
590 },
591 "/get_witness_count" : {
592 "get" : {
593 "summary" : "get_witness_count",
594 "description" : "get_witness_count\n",
595 "tags" : [ "Witness Api", "Condenser Api" ],
596 "responses" : {
597 "200" : {
598 "description" : "Result",
599 "schema" : {
600 "type" : "array",
601 "items" : {
602 "$ref" : "#/definitions/_"
603 }
604 }
605 },
606 "default" : {
607 "description" : "Unexpected error",
608 "schema" : {
609 "$ref" : "#/definitions/Error"
610 }
611 }
612 }
613 }
614 },
615 "/lookup_witness_accounts" : {
616 "get" : {
617 "summary" : "lookup_witness_accounts",
618 "description" : "lookup_witness_accounts regex search\n",
619 "parameters" : [ {
620 "name" : "lowerBoundName",
621 "in" : "query",
622 "description" : "lowerBoundName.",
623 "required" : true,
624 "type" : "string",
625 "format" : "string",
626 "default" : "good-kar"
627 }, {
628 "name" : "limit",
629 "in" : "query",
630 "description" : "limit.",
631 "required" : true,
632 "type" : "number",
633 "format" : "number",
634 "default" : 10
635 } ],
636 "tags" : [ "Condenser Api", "Witness Api" ],
637 "responses" : {
638 "200" : {
639 "description" : "Result",
640 "schema" : {
641 "type" : "array",
642 "items" : {
643 "$ref" : "#/definitions/_"
644 }
645 }
646 },
647 "default" : {
648 "description" : "Unexpected error",
649 "schema" : {
650 "$ref" : "#/definitions/Error"
651 }
652 }
653 }
654 }
655 },
656 "/get_witness_schedule" : {
657 "get" : {
658 "summary" : "get_witness_schedule",
659 "description" : "get_witness_schedule\n",
660 "tags" : [ "Witness Api", "Condenser Api" ],
661 "responses" : {
662 "200" : {
663 "description" : "Result",
664 "schema" : {
665 "type" : "array",
666 "items" : {
667 "$ref" : "#/definitions/_"
668 }
669 }
670 },
671 "default" : {
672 "description" : "Unexpected error",
673 "schema" : {
674 "$ref" : "#/definitions/Error"
675 }
676 }
677 }
678 }
679 },
680 "/get_witnesses" : {
681 "get" : {
682 "summary" : "get_witnesses",
683 "description" : "get_witnesses\n",
684 "parameters" : [ {
685 "name" : "witnessIds",
686 "in" : "query",
687 "description" : "witnessIds.",
688 "required" : true,
689 "type" : "string",
690 "format" : "string",
691 "default" : "[\"231\",\"12286\"]"
692 } ],
693 "tags" : [ "Witness Api", "Condenser Api" ],
694 "responses" : {
695 "200" : {
696 "description" : "Result",
697 "schema" : {
698 "type" : "array",
699 "items" : {
700 "$ref" : "#/definitions/_"
701 }
702 }
703 },
704 "default" : {
705 "description" : "Unexpected error",
706 "schema" : {
707 "$ref" : "#/definitions/Error"
708 }
709 }
710 }
711 }
712 },
713 "/get_witness_by_account" : {
714 "get" : {
715 "summary" : "get_witness_by_account",
716 "description" : "get_witness_by_account\n",
717 "parameters" : [ {
718 "name" : "accountName",
719 "in" : "query",
720 "description" : "witness account name.",
721 "required" : true,
722 "type" : "string",
723 "format" : "string",
724 "default" : "good-karma"
725 } ],
726 "tags" : [ "Witness Api", "Condenser Api" ],
727 "responses" : {
728 "200" : {
729 "description" : "Result",
730 "schema" : {
731 "type" : "array",
732 "items" : {
733 "$ref" : "#/definitions/_"
734 }
735 }
736 },
737 "default" : {
738 "description" : "Unexpected error",
739 "schema" : {
740 "$ref" : "#/definitions/Error"
741 }
742 }
743 }
744 }
745 },
746 "/get_witnesses_by_vote" : {
747 "get" : {
748 "summary" : "get_witnesses_by_vote",
749 "description" : "get_witnesses_by_vote\n",
750 "parameters" : [ {
751 "name" : "from",
752 "in" : "query",
753 "description" : "from witness.",
754 "required" : true,
755 "type" : "string",
756 "format" : "string",
757 "default" : "good-karma"
758 }, {
759 "name" : "limit",
760 "in" : "query",
761 "description" : "limit.",
762 "required" : true,
763 "type" : "integer",
764 "format" : "int32",
765 "default" : 10
766 } ],
767 "tags" : [ "Witness Api", "Condenser Api" ],
768 "responses" : {
769 "200" : {
770 "description" : "Result",
771 "schema" : {
772 "type" : "array",
773 "items" : {
774 "$ref" : "#/definitions/_"
775 }
776 }
777 },
778 "default" : {
779 "description" : "Unexpected error",
780 "schema" : {
781 "$ref" : "#/definitions/Error"
782 }
783 }
784 }
785 }
786 },
787 "/get_active_witnesses" : {
788 "get" : {
789 "summary" : "get_active_witnesses",
790 "description" : "get_active_witnesses\n",
791 "tags" : [ "Witness Api" ],
792 "responses" : {
793 "200" : {
794 "description" : "Result",
795 "schema" : {
796 "type" : "array",
797 "items" : {
798 "$ref" : "#/definitions/_"
799 }
800 }
801 },
802 "default" : {
803 "description" : "Unexpected error",
804 "schema" : {
805 "$ref" : "#/definitions/Error"
806 }
807 }
808 }
809 }
810 },
811 "/witness_update" : {
812 "get" : {
813 "summary" : "witness_update",
814 "description" : "witness_update\n",
815 "parameters" : [ {
816 "name" : "owner",
817 "in" : "query",
818 "description" : "witness name",
819 "required" : true,
820 "type" : "string",
821 "format" : "string",
822 "default" : "good-karma"
823 }, {
824 "name" : "url",
825 "in" : "query",
826 "description" : "url.",
827 "required" : true,
828 "type" : "string",
829 "format" : "string",
830 "default" : ""
831 }, {
832 "name" : "block_signing_key",
833 "in" : "query",
834 "description" : "block_signing_key.",
835 "required" : true,
836 "type" : "string",
837 "format" : "string",
838 "default" : "STM...."
839 }, {
840 "name" : "fee",
841 "in" : "query",
842 "description" : "fee.",
843 "required" : true,
844 "type" : "string",
845 "format" : "string",
846 "default" : "0.000"
847 }, {
848 "name" : "props",
849 "in" : "query",
850 "description" : "props.",
851 "required" : true,
852 "type" : "string",
853 "format" : "string",
854 "default" : "{\"account_creation_fee\":\"20.000 Gbl\",\"maximum_block_size\":65536,\"sbd_interest_rate\":100}"
855 } ],
856 "tags" : [ "Witness Api" ],
857 "responses" : {
858 "200" : {
859 "description" : "Result",
860 "schema" : {
861 "type" : "array",
862 "items" : {
863 "$ref" : "#/definitions/_"
864 }
865 }
866 },
867 "default" : {
868 "description" : "Unexpected error",
869 "schema" : {
870 "$ref" : "#/definitions/Error"
871 }
872 }
873 }
874 }
875 },
876 "/get_market_history" : {
877 "get" : {
878 "summary" : "get_market_history",
879 "description" : "Returns the market history for the internal SBD:Gbl market.\n",
880 "parameters" : [ {
881 "name" : "bucket_seconds",
882 "in" : "query",
883 "description" : "Queries up to 10 vesting delegations by “Gblit”.",
884 "required" : true,
885 "type" : "number",
886 "format" : "int",
887 "default" : 15
888 }, {
889 "name" : "start",
890 "in" : "query",
891 "description" : "timestamp start",
892 "required" : true,
893 "type" : "number",
894 "format" : "int32"
895 }, {
896 "name" : "end",
897 "in" : "query",
898 "description" : "timestamp end",
899 "required" : true,
900 "type" : "number",
901 "format" : "int32"
902 } ],
903 "tags" : [ "Market History Api", "Condenser Api" ],
904 "responses" : {
905 "200" : {
906 "description" : "Result",
907 "schema" : {
908 "type" : "array",
909 "items" : {
910 "$ref" : "#/definitions/_"
911 }
912 }
913 },
914 "default" : {
915 "description" : "Unexpected error",
916 "schema" : {
917 "$ref" : "#/definitions/Error"
918 }
919 }
920 }
921 }
922 },
923 "/get_market_history_buckets" : {
924 "get" : {
925 "summary" : "get_market_history_buckets",
926 "description" : "Returns the bucket seconds being tracked by the plugin.\n",
927 "tags" : [ "Market History Api", "Condenser Api" ],
928 "responses" : {
929 "200" : {
930 "description" : "Result",
931 "schema" : {
932 "type" : "array",
933 "items" : {
934 "$ref" : "#/definitions/_"
935 }
936 }
937 },
938 "default" : {
939 "description" : "Unexpected error",
940 "schema" : {
941 "$ref" : "#/definitions/Error"
942 }
943 }
944 }
945 }
946 },
947 "/get_miner_queue" : {
948 "get" : {
949 "summary" : "get_miner_queue",
950 "description" : "get_miner_queue\n",
951 "tags" : [ "Witness Api" ],
952 "responses" : {
953 "200" : {
954 "description" : "Result",
955 "schema" : {
956 "type" : "array",
957 "items" : {
958 "$ref" : "#/definitions/_"
959 }
960 }
961 },
962 "default" : {
963 "description" : "Unexpected error",
964 "schema" : {
965 "$ref" : "#/definitions/Error"
966 }
967 }
968 }
969 }
970 },
971 "/get_methods" : {
972 "get" : {
973 "summary" : "jsonrpc.get_methods",
974 "description" : "Returns a list of methods supported by the JSON RPC API.\n",
975 "tags" : [ "Jsonrpc" ],
976 "responses" : {
977 "200" : {
978 "description" : "Result",
979 "schema" : {
980 "type" : "array",
981 "items" : {
982 "$ref" : "#/definitions/_"
983 }
984 }
985 },
986 "default" : {
987 "description" : "Unexpected error",
988 "schema" : {
989 "$ref" : "#/definitions/Error"
990 }
991 }
992 }
993 }
994 },
995 "/get_signature" : {
996 "get" : {
997 "summary" : "jsonrpc.get_signature",
998 "description" : "Returns the signature information for a JSON RPC method including the arguments and expected response JSON.\n",
999 "parameters" : [ {
1000 "name" : "method",
1001 "in" : "query",
1002 "required" : true,
1003 "type" : "string",
1004 "format" : "string"
1005 } ],
1006 "tags" : [ "Jsonrpc" ],
1007 "responses" : {
1008 "200" : {
1009 "description" : "Result",
1010 "schema" : {
1011 "type" : "array",
1012 "items" : {
1013 "$ref" : "#/definitions/_"
1014 }
1015 }
1016 },
1017 "default" : {
1018 "description" : "Unexpected error",
1019 "schema" : {
1020 "$ref" : "#/definitions/Error"
1021 }
1022 }
1023 }
1024 }
1025 },
1026 "/get_liquidity_queue" : {
1027 "get" : {
1028 "summary" : "get_liquidity_queue",
1029 "description" : "get_liquidity_queue\n",
1030 "parameters" : [ {
1031 "name" : "startAccount",
1032 "in" : "query",
1033 "description" : "account name.",
1034 "required" : true,
1035 "type" : "string",
1036 "format" : "string",
1037 "default" : "good-karma"
1038 }, {
1039 "name" : "limit",
1040 "in" : "query",
1041 "description" : "limit.",
1042 "required" : true,
1043 "type" : "integer",
1044 "format" : "int32",
1045 "default" : 10
1046 } ],
1047 "tags" : [ "Market History Api" ],
1048 "responses" : {
1049 "200" : {
1050 "description" : "Result",
1051 "schema" : {
1052 "type" : "array",
1053 "items" : {
1054 "$ref" : "#/definitions/_"
1055 }
1056 }
1057 },
1058 "default" : {
1059 "description" : "Unexpected error",
1060 "schema" : {
1061 "$ref" : "#/definitions/Error"
1062 }
1063 }
1064 }
1065 }
1066 },
1067 "/get_open_orders" : {
1068 "get" : {
1069 "summary" : "get_open_orders",
1070 "description" : "get_open_orders\n",
1071 "parameters" : [ {
1072 "name" : "owner",
1073 "in" : "query",
1074 "description" : "account name.",
1075 "required" : true,
1076 "type" : "string",
1077 "format" : "string",
1078 "default" : "good-karma"
1079 } ],
1080 "tags" : [ "Market History Api", "Condenser Api" ],
1081 "responses" : {
1082 "200" : {
1083 "description" : "Result",
1084 "schema" : {
1085 "type" : "array",
1086 "items" : {
1087 "$ref" : "#/definitions/_"
1088 }
1089 }
1090 },
1091 "default" : {
1092 "description" : "Unexpected error",
1093 "schema" : {
1094 "$ref" : "#/definitions/Error"
1095 }
1096 }
1097 }
1098 }
1099 },
1100 "/get_order_book" : {
1101 "get" : {
1102 "summary" : "get_order_book",
1103 "description" : "get_order_book\n",
1104 "parameters" : [ {
1105 "name" : "limit",
1106 "in" : "query",
1107 "description" : "limit.",
1108 "required" : true,
1109 "type" : "integer",
1110 "format" : "int32",
1111 "default" : 10
1112 } ],
1113 "tags" : [ "Market History Api", "Condenser Api" ],
1114 "responses" : {
1115 "200" : {
1116 "description" : "Result",
1117 "schema" : {
1118 "type" : "array",
1119 "items" : {
1120 "$ref" : "#/definitions/_"
1121 }
1122 }
1123 },
1124 "default" : {
1125 "description" : "Unexpected error",
1126 "schema" : {
1127 "$ref" : "#/definitions/Error"
1128 }
1129 }
1130 }
1131 }
1132 },
1133 "/get_ranked_posts" : {
1134 "get" : {
1135 "summary" : "bridge.get_ranked_posts",
1136 "description" : "Get ranked posts\n",
1137 "parameters" : [ {
1138 "name" : "sort",
1139 "in" : "query",
1140 "required" : false,
1141 "type" : "string",
1142 "format" : "string"
1143 }, {
1144 "name" : "tag",
1145 "in" : "query",
1146 "required" : true,
1147 "type" : "string",
1148 "format" : "string"
1149 }, {
1150 "name" : "observer",
1151 "in" : "query",
1152 "required" : false,
1153 "type" : "string",
1154 "format" : "string"
1155 } ],
1156 "tags" : [ "Condenser Api" ],
1157 "responses" : {
1158 "200" : {
1159 "description" : "Result",
1160 "schema" : {
1161 "type" : "array",
1162 "items" : {
1163 "$ref" : "#/definitions/_"
1164 }
1165 }
1166 },
1167 "default" : {
1168 "description" : "Unexpected error",
1169 "schema" : {
1170 "$ref" : "#/definitions/Error"
1171 }
1172 }
1173 }
1174 }
1175 },
1176 "/get_recent_trades" : {
1177 "get" : {
1178 "summary" : "get_recent_trades",
1179 "description" : "Returns the most recent trades for the internal SBD:Gbl market\n",
1180 "deprecated" : true,
1181 "parameters" : [ {
1182 "name" : "limit",
1183 "in" : "query",
1184 "description" : "limit.",
1185 "required" : false,
1186 "type" : "integer",
1187 "format" : "int32",
1188 "default" : 10
1189 } ],
1190 "tags" : [ "Condenser Api" ],
1191 "responses" : {
1192 "200" : {
1193 "description" : "Result",
1194 "schema" : {
1195 "type" : "array",
1196 "items" : {
1197 "$ref" : "#/definitions/_"
1198 }
1199 }
1200 },
1201 "default" : {
1202 "description" : "Unexpected error",
1203 "schema" : {
1204 "$ref" : "#/definitions/Error"
1205 }
1206 }
1207 }
1208 }
1209 },
1210 "/get_ticker" : {
1211 "get" : {
1212 "summary" : "get ticker",
1213 "description" : "Returns the market ticker for the internal SBD:Gbl market.\n",
1214 "tags" : [ "Market History Api", "Condenser Api" ],
1215 "responses" : {
1216 "200" : {
1217 "description" : "Result",
1218 "schema" : {
1219 "type" : "array",
1220 "items" : {
1221 "$ref" : "#/definitions/_"
1222 }
1223 }
1224 },
1225 "default" : {
1226 "description" : "Unexpected error",
1227 "schema" : {
1228 "$ref" : "#/definitions/Error"
1229 }
1230 }
1231 }
1232 }
1233 },
1234 "/get_trending_categories" : {
1235 "get" : {
1236 "summary" : "get trending categories",
1237 "description" : "get tags\n",
1238 "parameters" : [ {
1239 "name" : "after",
1240 "in" : "query",
1241 "description" : "after.",
1242 "required" : false,
1243 "type" : "string",
1244 "format" : "string",
1245 "default" : "Gbl"
1246 }, {
1247 "name" : "limit",
1248 "in" : "query",
1249 "description" : "limits.",
1250 "required" : false,
1251 "type" : "number",
1252 "format" : "number",
1253 "default" : 10
1254 } ],
1255 "tags" : [ "Condenser Api" ],
1256 "responses" : {
1257 "200" : {
1258 "description" : "Result",
1259 "schema" : {
1260 "type" : "array",
1261 "items" : {
1262 "$ref" : "#/definitions/_"
1263 }
1264 }
1265 },
1266 "default" : {
1267 "description" : "Unexpected error",
1268 "schema" : {
1269 "$ref" : "#/definitions/Error"
1270 }
1271 }
1272 }
1273 }
1274 },
1275 "/get_trending_tags" : {
1276 "get" : {
1277 "summary" : "get trending categories",
1278 "description" : "get tags\n",
1279 "parameters" : [ {
1280 "name" : "afterTag",
1281 "in" : "query",
1282 "description" : "category.",
1283 "required" : false,
1284 "type" : "string",
1285 "format" : "string",
1286 "default" : "Gbl"
1287 }, {
1288 "name" : "limit",
1289 "in" : "query",
1290 "description" : "limits.",
1291 "required" : false,
1292 "type" : "number",
1293 "format" : "int",
1294 "default" : 10
1295 } ],
1296 "tags" : [ "Condenser Api" ],
1297 "responses" : {
1298 "200" : {
1299 "description" : "An array of products",
1300 "schema" : {
1301 "type" : "array",
1302 "items" : {
1303 "$ref" : "#/definitions/_"
1304 }
1305 }
1306 },
1307 "default" : {
1308 "description" : "Unexpected error",
1309 "schema" : {
1310 "$ref" : "#/definitions/Error"
1311 }
1312 }
1313 }
1314 }
1315 },
1316 "/get_active_votes" : {
1317 "get" : {
1318 "summary" : "get_active_votes",
1319 "description" : "get_active_votes\n",
1320 "parameters" : [ {
1321 "name" : "author",
1322 "in" : "query",
1323 "description" : "account name.",
1324 "required" : true,
1325 "type" : "string",
1326 "format" : "string",
1327 "default" : "smooth"
1328 }, {
1329 "name" : "permlink",
1330 "in" : "query",
1331 "description" : "permlink of post.",
1332 "required" : true,
1333 "type" : "string",
1334 "format" : "string",
1335 "default" : "test"
1336 } ],
1337 "tags" : [ "Tags Api", "Condenser Api" ],
1338 "responses" : {
1339 "200" : {
1340 "description" : "Result",
1341 "schema" : {
1342 "type" : "array",
1343 "items" : {
1344 "$ref" : "#/definitions/_"
1345 }
1346 }
1347 },
1348 "default" : {
1349 "description" : "Unexpected error",
1350 "schema" : {
1351 "$ref" : "#/definitions/Error"
1352 }
1353 }
1354 }
1355 }
1356 },
1357 "/get_content" : {
1358 "get" : {
1359 "summary" : "get content",
1360 "description" : "get content\n",
1361 "parameters" : [ {
1362 "name" : "author",
1363 "in" : "query",
1364 "description" : "author.",
1365 "required" : true,
1366 "type" : "string",
1367 "format" : "string",
1368 "default" : "smooth"
1369 }, {
1370 "name" : "permlink",
1371 "in" : "query",
1372 "description" : "permlink.",
1373 "required" : true,
1374 "type" : "string",
1375 "format" : "string",
1376 "default" : "test"
1377 } ],
1378 "tags" : [ "Condenser Api" ],
1379 "responses" : {
1380 "200" : {
1381 "description" : "Result",
1382 "schema" : {
1383 "type" : "array",
1384 "items" : {
1385 "$ref" : "#/definitions/_"
1386 }
1387 }
1388 },
1389 "default" : {
1390 "description" : "Unexpected error",
1391 "schema" : {
1392 "$ref" : "#/definitions/Error"
1393 }
1394 }
1395 }
1396 }
1397 },
1398 "/get_content_replies" : {
1399 "get" : {
1400 "summary" : "get content replies",
1401 "description" : "get content replies\n",
1402 "parameters" : [ {
1403 "name" : "author",
1404 "in" : "query",
1405 "description" : "author.",
1406 "required" : true,
1407 "type" : "string",
1408 "format" : "string",
1409 "default" : "smooth"
1410 }, {
1411 "name" : "permlink",
1412 "in" : "query",
1413 "description" : "permlink.",
1414 "required" : true,
1415 "type" : "string",
1416 "format" : "string",
1417 "default" : "test"
1418 } ],
1419 "tags" : [ "Tags Api" ],
1420 "responses" : {
1421 "200" : {
1422 "description" : "Result",
1423 "schema" : {
1424 "type" : "array",
1425 "items" : {
1426 "$ref" : "#/definitions/_"
1427 }
1428 }
1429 },
1430 "default" : {
1431 "description" : "Unexpected error",
1432 "schema" : {
1433 "$ref" : "#/definitions/Error"
1434 }
1435 }
1436 }
1437 }
1438 },
1439 "/get_discussions_by_trending" : {
1440 "get" : {
1441 "summary" : "get discussions by trending",
1442 "description" : "get discussions, | query example {\"limit\":\"10\", \"tag\":\"Gbl\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination\n",
1443 "parameters" : [ {
1444 "name" : "query",
1445 "in" : "query",
1446 "description" : "query object.",
1447 "required" : true,
1448 "type" : "string",
1449 "format" : "string",
1450 "default" : "{\"tag\":\"Gbl\", \"limit\": \"10\"}"
1451 } ],
1452 "tags" : [ "Tags Api", "Condenser Api" ],
1453 "responses" : {
1454 "200" : {
1455 "description" : "Result",
1456 "schema" : {
1457 "type" : "array",
1458 "items" : {
1459 "$ref" : "#/definitions/_"
1460 }
1461 }
1462 },
1463 "default" : {
1464 "description" : "Unexpected error",
1465 "schema" : {
1466 "$ref" : "#/definitions/Error"
1467 }
1468 }
1469 }
1470 }
1471 },
1472 "/get_discussions_by_trending30" : {
1473 "get" : {
1474
1475 "summary" : "get discussions by trending 30",
1476 "description" : "get discussions, | query example {\"limit\":\"10\", \"tag\":\"Gbl\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination\n",
1477 "parameters" : [ {
1478 "name" : "query",
1479 "in" : "query",
1480 "description" : "query object.",
1481 "required" : true,
1482 "type" : "string",
1483 "format" : "string",
1484 "default" : "{\"tag\":\"Gbl\", \"limit\": \"10\"}"
1485 } ],
1486 "tags" : [ "Tags Api" ],
1487 "responses" : {
1488 "200" : {
1489 "description" : "Result",
1490 "schema" : {
1491 "type" : "array",
1492 "items" : {
1493 "$ref" : "#/definitions/_"
1494 }
1495 }
1496 },
1497 "default" : {
1498 "description" : "Unexpected error",
1499 "schema" : {
1500 "$ref" : "#/definitions/Error"
1501 }
1502 }
1503 }
1504 }
1505 },
1506 "/get_discussions_by_created" : {
1507 "get" : {
1508 "summary" : "get discussions",
1509 "description" : "get discussions, | query example {\"limit\":\"10\", \"tag\":\"Gbl\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination\n",
1510 "parameters" : [ {
1511 "name" : "query",
1512 "in" : "query",
1513 "description" : "query object.",
1514 "required" : true,
1515 "type" : "string",
1516 "format" : "string",
1517 "default" : "{\"tag\":\"Gbl\", \"limit\": \"10\"}"
1518 } ],
1519 "tags" : [ "Tags Api", "Condenser Api" ],
1520 "responses" : {
1521 "200" : {
1522 "description" : "Result",
1523 "schema" : {
1524 "type" : "array",
1525 "items" : {
1526 "$ref" : "#/definitions/_"
1527 }
1528 }
1529 },
1530 "default" : {
1531 "description" : "Unexpected error",
1532 "schema" : {
1533 "$ref" : "#/definitions/Error"
1534 }
1535 }
1536
1537 }
1538 }
1539 },
1540 "/get_discussions_by_active" : {
1541 "get" : {
1542 "summary" : "get discussions",
1543 "description" : "get discussions, | query example {\"limit\":\"10\", \"tag\":\"Gbl\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination\n",
1544 "parameters" : [ {
1545 "name" : "query",
1546 "in" : "query",
1547 "description" : "query object.",
1548 "required" : true,
1549 "type" : "string",
1550 "format" : "string",
1551 "default" : "{\"tag\":\"Gbl\", \"limit\": \"10\"}"
1552 } ],
1553 "tags" : [ "Tags Api" ],
1554 "responses" : {
1555 "200" : {
1556 "description" : "Result",
1557 "schema" : {
1558 "type" : "array",
1559 "items" : {
1560 "$ref" : "#/definitions/_"
1561 }
1562 }
1563 },
1564 "default" : {
1565 "description" : "Unexpected error",
1566 "schema" : {
1567 "$ref" : "#/definitions/Error"
1568 }
1569 }
1570 }
1571 }
1572 },
1573 "/get_discussions_by_promoted" : {
1574 "get" : {
1575 "summary" : "get discussions",
1576 "description" : "get discussions, | query example {\"limit\":\"10\", \"tag\":\"Gbl\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination\n",
1577 "parameters" : [ {
1578 "name" : "query",
1579 "in" : "query",
1580 "description" : "query object.",
1581 "required" : true,
1582 "type" : "string",
1583 "format" : "string",
1584 "default" : "{\"tag\":\"Gbl\", \"limit\": \"10\"}"
1585 } ],
1586 "tags" : [ "Tags Api", "Condenser Api" ],
1587 "responses" : {
1588 "200" : {
1589 "description" : "Result",
1590 "schema" : {
1591 "type" : "array",
1592 "items" : {
1593 "$ref" : "#/definitions/_"
1594 }
1595 }
1596 },
1597 "default" : {
1598 "description" : "Unexpected error",
1599 "schema" : {
1600 "$ref" : "#/definitions/Error"
1601 }
1602 }
1603 }
1604 }
1605 },
1606 "/get_discussions_by_cashout" : {
1607 "get" : {
1608 "summary" : "get discussions",
1609 "description" : "get discussions, | query example {\"limit\":\"10\", \"tag\":\"Gbl\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination\n",
1610 "parameters" : [ {
1611 "name" : "query",
1612 "in" : "query",
1613 "description" : "query object.",
1614 "required" : true,
1615 "type" : "string",
1616 "format" : "string",
1617 "default" : "{\"tag\":\"Gbl\", \"limit\": \"10\"}"
1618 } ],
1619 "tags" : [ "Tags Api", "Condenser Api" ],
1620 "responses" : {
1621 "200" : {
1622 "description" : "Result",
1623 "schema" : {
1624 "type" : "array",
1625 "items" : {
1626 "$ref" : "#/definitions/_"
1627 }
1628 }
1629 },
1630 "default" : {
1631 "description" : "Unexpected error",
1632 "schema" : {
1633 "$ref" : "#/definitions/Error"
1634 }
1635 }
1636 }
1637 }
1638 },
1639 "/get_post_discussions_by_payout" : {
1640 "get" : {
1641 "summary" : "Return a list of post discussions by payout",
1642 "description" : "Return a list discussions based on payout\nget discussions, | query example {\"limit\":\"10\", \"tag\":\"Gbl\", \"filter_tags\":\"Gbl\"} OR {\"select_author\":\"author\", \"select_tags\":\"Gbl\"} for pagination,\n",
1643 "parameters" : [ {
1644 "name" : "query",
1645 "in" : "query",
1646 "description" : "query object.",
1647 "required" : true,
1648 "type" : "string",
1649 "format" : "string",
1650 "default" : "{\"tag\":\"Gbl\", \"limit\": \"10\"}"
1651 } ],
1652 "responses" : {
1653 "200" : {
1654 "description" : "Result",
1655 "schema" : {
1656 "type" : "array",
1657 "items" : {
1658 "$ref" : "#/definitions/_"
1659 }
1660 }
1661 },
1662 "default" : {
1663 "description" : "Unexpected error",
1664 "schema" : {
1665 "$ref" : "#/definitions/Error"
1666 }
1667 }
1668 },
1669 "tags" : [ "Condenser Api" ]
1670 }
1671 },
1672 "/get_comment_discussions_by_payout" : {
1673 "get" : {
1674 "summary" : "get discussions",
1675 "description" : "Return a list discussions based on payout\nget discussions, | query example {\"limit\":\"10\", \"tag\":\"Gbl\", \"filter_tags\":\"Gbl\", \"select_author\":\"Gbl\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination,\n",
1676 "parameters" : [ {
1677 "name" : "query",
1678 "in" : "query",
1679 "description" : "query object.",
1680 "required" : true,
1681 "type" : "string",
1682 "format" : "string",
1683 "default" : "{\"tag\":\"Gbl\", \"limit\": \"10\"}"
1684 } ],
1685 "responses" : {
1686 "200" : {
1687 "description" : "Result",
1688 "schema" : {
1689 "type" : "array",
1690 "items" : {
1691 "$ref" : "#/definitions/_"
1692 }
1693 }
1694 },
1695 "default" : {
1696 "description" : "Unexpected error",
1697 "schema" : {
1698 "$ref" : "#/definitions/Error"
1699 }
1700 }
1701 },
1702 "tags" : [ "Tags Api" ]
1703 }
1704 },
1705 "/get_discussions" : {
1706 "get" : {
1707 "summary" : "Returns the discussions given an author and permlink",
1708 "description" : "**get discussions**, | **query example** *{\"author\":\"author\", \"permlink\":\"permlink\"}*\n",
1709 "parameters" : [ {
1710 "name" : "query",
1711 "in" : "query",
1712 "description" : "query object.",
1713 "required" : true,
1714 "type" : "string",
1715 "format" : "string",
1716 "default" : "{\"author\":\"\", \"permlink\": \"\"}"
1717 } ],
1718 "responses" : {
1719 "200" : {
1720 "description" : "Result",
1721 "schema" : {
1722 "type" : "array",
1723 "items" : {
1724 "$ref" : "#/definitions/_"
1725 }
1726 }
1727 },
1728 "default" : {
1729 "description" : "Unexpected error",
1730 "schema" : {
1731 "$ref" : "#/definitions/Error"
1732 }
1733 }
1734 },
1735 "tags" : [ "Tags Api" ]
1736 }
1737 },
1738 "/get_discussions_by_votes" : {
1739 "get" : {
1740 "summary" : "get discussions by votes",
1741 "description" : "get discussions, | query example {\"limit\":\"10\", \"tag\":\"Gbl\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination\n",
1742 "parameters" : [ {
1743 "name" : "query",
1744 "in" : "query",
1745 "description" : "query object.",
1746 "required" : true,
1747 "type" : "string",
1748 "format" : "string",
1749 "default" : "{\"tag\":\"Gbl\", \"limit\": \"10\"}"
1750 } ],
1751 "responses" : {
1752 "200" : {
1753 "description" : "Result",
1754 "schema" : {
1755 "type" : "array",
1756 "items" : {
1757 "$ref" : "#/definitions/_"
1758 }
1759 }
1760 },
1761 "default" : {
1762 "description" : "Unexpected error",
1763 "schema" : {
1764 "$ref" : "#/definitions/Error"
1765 }
1766 }
1767 },
1768 "tags" : [ "Tags Api", "Condenser Api" ]
1769 }
1770 },
1771 "/get_discussions_by_children" : {
1772 "get" : {
1773 "summary" : "get discussions",
1774 "description" : "get discussions, | query example {\"limit\":\"10\", \"tag\":\"Gbl\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination\n",
1775 "parameters" : [ {
1776 "name" : "query",
1777 "in" : "query",
1778 "description" : "query object.",
1779 "required" : true,
1780 "type" : "string",
1781 "format" : "string",
1782 "default" : "{\"tag\":\"Gbl\", \"limit\": \"10\"}"
1783 } ],
1784 "responses" : {
1785 "200" : {
1786 "description" : "Result",
1787 "schema" : {
1788 "type" : "array",
1789 "items" : {
1790 "$ref" : "#/definitions/_"
1791 }
1792 }
1793 },
1794 "default" : {
1795 "description" : "Unexpected error",
1796 "schema" : {
1797 "$ref" : "#/definitions/Error"
1798 }
1799 }
1800 },
1801 "tags" : [ "Tags Api", "Condenser Api" ]
1802 }
1803 },
1804 "/get_discussions_by_hot" : {
1805 "get" : {
1806 "summary" : "get discussions by hot",
1807 "description" : "get discussions, | query example {\"limit\":\"10\", \"tag\":\"Gbl\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination\n",
1808 "parameters" : [ {
1809 "name" : "query",
1810 "in" : "query",
1811 "description" : "query object.",
1812 "required" : true,
1813 "type" : "string",
1814 "format" : "string",
1815 "default" : "{\"tag\":\"Gbl\", \"limit\": \"10\"}"
1816 } ],
1817 "responses" : {
1818 "200" : {
1819 "description" : "Result",
1820 "schema" : {
1821 "type" : "array",
1822 "items" : {
1823 "$ref" : "#/definitions/_"
1824 }
1825 }
1826 },
1827 "default" : {
1828 "description" : "Unexpected error",
1829 "schema" : {
1830 "$ref" : "#/definitions/Error"
1831 }
1832 }
1833 },
1834 "tags" : [ "Tags Api", "Condenser Api" ]
1835 }
1836 },
1837 "/get_discussions_by_feed" : {
1838 "get" : {
1839 "summary" : "get discussions by feed",
1840 "description" : "get discussions, | query example {\"limit\":\"10\", \"tags\":\"good-karma\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination\n",
1841 "parameters" : [ {
1842 "name" : "query",
1843 "in" : "query",
1844 "description" : "query object.",
1845 "required" : true,
1846 "type" : "string",
1847 "format" : "string",
1848 "default" : "{\"tag\":\"good-karma\", \"limit\": \"10\"}"
1849 } ],
1850 "responses" : {
1851 "200" : {
1852 "description" : "Result",
1853 "schema" : {
1854 "type" : "array",
1855 "items" : {
1856 "$ref" : "#/definitions/_"
1857 }
1858 }
1859 },
1860 "default" : {
1861 "description" : "Unexpected error",
1862 "schema" : {
1863 "$ref" : "#/definitions/Error"
1864 }
1865 }
1866 },
1867 "tags" : [ "Tags Api", "Condenser Api" ]
1868 }
1869 },
1870 "/get_discussions_by_blog" : {
1871 "get" : {
1872 "summary" : "get discussions",
1873 "description" : "get discussions, | query example {\"limit\":\"10\", \"tag\":\"good-karma\"} OR {\"start_author\":\"author\", \"permlink\":\"permlink\"} for pagination\n",
1874 "parameters" : [ {
1875 "name" : "query",
1876 "in" : "query",
1877 "description" : "query object.",
1878 "required" : true,
1879 "type" : "string",
1880 "format" : "string",
1881 "default" : "{\"tag\":\"good-karma\", \"limit\": \"10\"}"
1882 } ],
1883 "responses" : {
1884 "200" : {
1885 "description" : "Result",
1886 "schema" : {
1887 "type" : "array",
1888 "items" : {
1889 "$ref" : "#/definitions/_"
1890 }
1891 }
1892 },
1893 "default" : {
1894 "description" : "Unexpected error",
1895 "schema" : {
1896 "$ref" : "#/definitions/Error"
1897 }
1898 }
1899 },
1900 "tags" : [ "Tags Api", "Condenser Api" ]
1901 }
1902 },
1903 "/get_discussions_by_comments" : {
1904 "get" : {
1905 "summary" : "get discussions",
1906 "description" : "get discussions, | query example {\"start_author\":\"author\", \"start_permlink\":\"permlink\", \"limi\":\"10\"}\n",
1907 "parameters" : [ {
1908 "name" : "query",
1909 "in" : "query",
1910 "description" : "query object.",
1911 "required" : true,
1912 "type" : "string",
1913 "format" : "string",
1914 "default" : "{\"start_author\":\"smooth\",\"start_permlink\":\"test\",\"limit\":\"10\"}"
1915 } ],
1916 "responses" : {
1917 "200" : {
1918 "description" : "Result",
1919 "schema" : {
1920 "type" : "array",
1921 "items" : {
1922 "$ref" : "#/definitions/_"
1923 }
1924 }
1925 },
1926 "default" : {
1927 "description" : "Unexpected error",
1928 "schema" : {
1929 "$ref" : "#/definitions/Error"
1930 }
1931 }
1932 },
1933 "tags" : [ "Tags Api", "Condenser Api" ]
1934 }
1935 },
1936 "/get_discussions_by_author_before_date" : {
1937 "get" : {
1938 "summary" : "get_discussions_by_author_before_date",
1939 "description" : "get_discussions_by_author_before_date\n",
1940 "parameters" : [ {
1941 "name" : "author",
1942 "in" : "query",
1943 "description" : "account name.",
1944 "required" : true,
1945 "type" : "string",
1946 "format" : "string",
1947 "default" : "smooth"
1948 }, {
1949 "name" : "startPermlink",
1950 "in" : "query",
1951 "description" : "permlink of post.",
1952 "required" : true,
1953 "type" : "string",
1954 "format" : "string",
1955 "default" : "test"
1956 }, {
1957 "name" : "beforeDate",
1958 "in" : "query",
1959 "description" : "date and time.",
1960 "required" : true,
1961 "type" : "string",
1962 "format" : "string",
1963 "default" : "2016-07-23T22:00:06"
1964 }, {
1965 "name" : "limit",
1966 "in" : "query",
1967 "description" : "limit query.",
1968 "required" : true,
1969 "type" : "integer",
1970 "format" : "int32",
1971 "default" : 10
1972 } ],
1973 "responses" : {
1974 "200" : {
1975 "description" : "Result",
1976 "schema" : {
1977 "type" : "array",
1978 "items" : {
1979 "$ref" : "#/definitions/_"
1980 }
1981 }
1982 },
1983 "default" : {
1984 "description" : "Unexpected error",
1985 "schema" : {
1986 "$ref" : "#/definitions/Error"
1987 }
1988 }
1989 },
1990 "tags" : [ "Tags Api" ]
1991 }
1992 },
1993 "/get_replies_by_last_update" : {
1994 "get" : {
1995 "summary" : "get_replies_by_last_update",
1996 "description" : "get_replies_by_last_update\n",
1997 "parameters" : [ {
1998 "name" : "startAuthor",
1999 "in" : "query",
2000 "description" : "account name.",
2001 "required" : true,
2002 "type" : "string",
2003 "format" : "string",
2004 "default" : "smooth"
2005 }, {
2006 "name" : "startPermlink",
2007 "in" : "query",
2008 "description" : "permlink of post.",
2009 "required" : true,
2010 "type" : "string",
2011 "format" : "string",
2012 "default" : "test"
2013 }, {
2014 "name" : "limit",
2015 "in" : "query",
2016 "description" : "limit query.",
2017 "required" : true,
2018 "type" : "integer",
2019 "format" : "int32",
2020 "default" : 10
2021 } ],
2022 "responses" : {
2023 "200" : {
2024 "description" : "Result",
2025 "schema" : {
2026 "type" : "array",
2027 "items" : {
2028 "$ref" : "#/definitions/_"
2029 }
2030 }
2031 },
2032 "default" : {
2033 "description" : "Unexpected error",
2034 "schema" : {
2035 "$ref" : "#/definitions/Error"
2036 }
2037 }
2038 },
2039 "tags" : [ "Condenser Api" ]
2040 }
2041 },
2042 "/get_reward_fund" : {
2043 "get" : {
2044 "summary" : "get_reward_fund",
2045 "description" : "Returns information about the current reward funds.\n",
2046 "parameters" : [ {
2047 "name" : "path",
2048 "in" : "query",
2049 "description" : "post",
2050 "required" : true,
2051 "type" : "string",
2052 "format" : "string",
2053 "default" : "post"
2054 } ],
2055 "tags" : [ "Condenser Api" ],
2056 "responses" : {
2057 "200" : {
2058 "description" : "Result",
2059 "schema" : {
2060 "type" : "array",
2061 "items" : {
2062 "$ref" : "#/definitions/_"
2063 }
2064 }
2065 },
2066 "default" : {
2067 "description" : "Unexpected error",
2068 "schema" : {
2069 "$ref" : "#/definitions/Error"
2070 }
2071 }
2072 }
2073 }
2074 },
2075 "/get_state" : {
2076 "get" : {
2077 "summary" : "get_state",
2078 "description" : "get_state\n",
2079 "parameters" : [ {
2080 "name" : "path",
2081 "in" : "query",
2082 "description" : "account name.",
2083 "required" : true,
2084 "type" : "string",
2085 "format" : "string",
2086 "default" : "/@good-karma"
2087 } ],
2088 "responses" : {
2089 "200" : {
2090 "description" : "Result",
2091 "schema" : {
2092 "type" : "array",
2093 "items" : {
2094 "$ref" : "#/definitions/_"
2095 }
2096 }
2097 },
2098 "default" : {
2099 "description" : "Unexpected error",
2100 "schema" : {
2101 "$ref" : "#/definitions/Error"
2102 }
2103 }
2104 },
2105 "tags" : [ "Condenser Api" ]
2106 }
2107 },
2108 "/get_account_reputations" : {
2109 "get" : {
2110 "summary" : "get_account_reputations",
2111 "description" : "Returns a list of account reputations. Parameters: account_lower_bound:string; limit:int up to 1000\n",
2112 "parameters" : [ {
2113 "name" : "account_lower_bound",
2114 "in" : "query",
2115 "description" : "account name.",
2116 "required" : true,
2117 "type" : "string",
2118 "format" : "string",
2119 "default" : "Gblit"
2120 }, {
2121 "name" : "limit",
2122 "in" : "query",
2123 "description" : "up to 1000",
2124 "required" : true,
2125 "type" : "number",
2126 "format" : "int",
2127 "default" : 10
2128 } ],
2129 "tags" : [ "Condenser Api", "Reputation Api", "Follow Api" ],
2130 "responses" : {
2131 "200" : {
2132 "description" : "Result",
2133 "schema" : {
2134 "type" : "array",
2135 "items" : {
2136 "$ref" : "#/definitions/_"
2137 }
2138 }
2139 },
2140 "default" : {
2141 "description" : "Unexpected error",
2142 "schema" : {
2143 "$ref" : "#/definitions/Error"
2144 }
2145 }
2146 }
2147 }
2148 },
2149 "/get_account_votes" : {
2150 "get" : {
2151 "summary" : "get_account_votes",
2152 "description" : "get_account_votes\n",
2153 "parameters" : [ {
2154 "name" : "voter",
2155 "in" : "query",
2156 "description" : "account name.",
2157 "required" : true,
2158 "type" : "string",
2159 "format" : "string",
2160 "default" : "smooth"
2161 } ],
2162 "tags" : [ "Condenser Api" ],
2163 "responses" : {
2164 "200" : {
2165 "description" : "Result",
2166 "schema" : {
2167 "type" : "array",
2168 "items" : {
2169 "$ref" : "#/definitions/get_account_votes"
2170 }
2171 }
2172 },
2173 "default" : {
2174 "description" : "Unexpected error",
2175 "schema" : {
2176 "$ref" : "#/definitions/Error"
2177 }
2178 }
2179 }
2180 }
2181 },
2182 "/get_account_history" : {
2183 "get" : {
2184 "summary" : "Account history",
2185 "description" : "Account history\n",
2186 "parameters" : [ {
2187 "name" : "account",
2188 "in" : "query",
2189 "description" : "name of account",
2190 "required" : true,
2191 "type" : "string",
2192 "format" : "string",
2193 "default" : "good-karma"
2194 }, {
2195 "name" : "from",
2196 "in" : "query",
2197 "description" : "from",
2198 "type" : "number",
2199 "format" : "number",
2200 "default" : 10
2201 }, {
2202 "name" : "limit",
2203 "in" : "query",
2204 "description" : "limit",
2205 "type" : "number",
2206 "format" : "number",
2207 "default" : 10
2208 } ],
2209 "tags" : [ "Condenser Api", "Account History Api" ],
2210 "responses" : {
2211 "200" : {
2212 "description" : "Result",
2213 "schema" : {
2214 "type" : "number",
2215 "items" : {
2216 "$ref" : "#/definitions/get_account_history"
2217 }
2218 }
2219 },
2220 "default" : {
2221 "description" : "Unexpected error",
2222 "schema" : {
2223 "$ref" : "#/definitions/Error"
2224 }
2225 }
2226 }
2227 }
2228 },
2229 "/get_owner_history" : {
2230 "get" : {
2231 "summary" : "get_owner_history",
2232 "description" : "get_owner_history\n",
2233 "parameters" : [ {
2234 "name" : "account",
2235 "in" : "query",
2236 "description" : "account name.",
2237 "required" : true,
2238 "type" : "string",
2239 "format" : "string",
2240 "default" : "good-karma"
2241 } ],
2242 "tags" : [ "Market History Api", "Condenser Api" ],
2243 "responses" : {
2244 "200" : {
2245 "description" : "Result",
2246 "schema" : {
2247 "type" : "array",
2248 "items" : {
2249 "$ref" : "#/definitions/_"
2250 }
2251 }
2252 },
2253 "default" : {
2254 "description" : "Unexpected error",
2255 "schema" : {
2256 "$ref" : "#/definitions/Error"
2257 }
2258 }
2259 }
2260 }
2261 },
2262 "/get_accounts" : {
2263 "get" : {
2264 "summary" : "Return accounts, queried by name.",
2265 "description" : "Get Accounts from Gbl\n",
2266 "parameters" : [ {
2267 "name" : "names[]",
2268 "in" : "query",
2269 "description" : "name of account",
2270 "required" : true,
2271 "type" : "string",
2272 "format" : "string",
2273 "default" : "[\"good-karma\", \"fabien\"]"
2274 } ],
2275 "tags" : [ "Condenser Api" ],
2276 "responses" : {
2277 "200" : {
2278 "description" : "Result",
2279 "schema" : {
2280 "type" : "array",
2281 "items" : {
2282 "$ref" : "#/definitions/get_accounts"
2283 }
2284 }
2285 },
2286 "default" : {
2287 "description" : "Unexpected error",
2288 "schema" : {
2289 "$ref" : "#/definitions/Error"
2290 }
2291 }
2292 }
2293 }
2294 },
2295 "/get_conversion_requests" : {
2296 "get" : {
2297 "summary" : "get conversation",
2298 "description" : "get conversation requests of account\n",
2299 "parameters" : [ {
2300 "name" : "accountName",
2301 "in" : "query",
2302 "description" : "account name.",
2303 "required" : true,
2304 "type" : "string",
2305 "format" : "string",
2306 "default" : "good-karma"
2307 } ],
2308 "tags" : [ "Condenser Api" ],
2309 "responses" : {
2310 "200" : {
2311 "description" : "Result",
2312 "schema" : {
2313 "type" : "array",
2314 "items" : {
2315 "$ref" : "#/definitions/_"
2316 }
2317 }
2318 },
2319 "default" : {
2320 "description" : "Unexpected error",
2321 "schema" : {
2322 "$ref" : "#/definitions/Error"
2323 }
2324 }
2325 }
2326 }
2327 },
2328 "/get_recovery_request" : {
2329 "get" : {
2330 "summary" : "get_recovery_request",
2331 "description" : "get_recovery_request\n",
2332 "parameters" : [ {
2333 "name" : "account",
2334 "in" : "query",
2335 "description" : "account name.",
2336 "required" : true,
2337 "type" : "string",
2338 "format" : "string",
2339 "default" : "good-karma"
2340 } ],
2341 "responses" : {
2342 "200" : {
2343 "description" : "Result",
2344 "schema" : {
2345 "type" : "array",
2346 "items" : {
2347 "$ref" : "#/definitions/_"
2348 }
2349 }
2350 },
2351 "default" : {
2352 "description" : "Unexpected error",
2353 "schema" : {
2354 "$ref" : "#/definitions/Error"
2355 }
2356 }
2357 },
2358 "tags" : [ "Condenser Api" ]
2359 }
2360 },
2361 "/get_resource_params" : {
2362 "get" : {
2363 "summary" : "get_resource_params",
2364 "description" : "Exports all relevant resource size constants, in particular the measurement-based execution time parameters\n",
2365 "tags" : [ "RC Api" ],
2366 "responses" : {
2367 "200" : {
2368 "description" : "Result",
2369 "schema" : {
2370 "type" : "array",
2371 "items" : {
2372 "$ref" : "#/definitions/_"
2373 }
2374 }
2375 },
2376 "default" : {
2377 "description" : "Unexpected error",
2378 "schema" : {
2379 "$ref" : "#/definitions/Error"
2380 }
2381 }
2382 }
2383 }
2384 },
2385 "/get_resource_pool" : {
2386 "get" : {
2387 "summary" : "get_resource_params",
2388 "description" : "Exports all relevant resource size constants, in particular the measurement-based execution time parameters\n",
2389 "tags" : [ "RC Api" ],
2390 "responses" : {
2391 "200" : {
2392 "description" : "Result",
2393 "schema" : {
2394 "type" : "array",
2395 "items" : {
2396 "$ref" : "#/definitions/_"
2397 }
2398 }
2399 },
2400 "default" : {
2401 "description" : "Unexpected error",
2402 "schema" : {
2403 "$ref" : "#/definitions/Error"
2404 }
2405 }
2406 }
2407 }
2408 },
2409 "/lookup_account_names" : {
2410 "get" : {
2411 "summary" : "lookup_account_names",
2412 "description" : "lookup_account_names example of accountNames [\"good-karma\", \"fabien\"]\n",
2413 "parameters" : [ {
2414 "name" : "accountNames",
2415 "in" : "query",
2416 "description" : "accountNames [\"good-karma\", \"fabien\"].",
2417 "required" : true,
2418 "type" : "string",
2419 "format" : "array",
2420 "default" : "[\"good-karma\",\"fabien\"]"
2421 } ],
2422 "tags" : [ "Condenser Api" ],
2423 "responses" : {
2424 "200" : {
2425 "description" : "Result",
2426 "schema" : {
2427 "type" : "array",
2428 "items" : {
2429 "$ref" : "#/definitions/_"
2430 }
2431 }
2432 },
2433 "default" : {
2434 "description" : "Unexpected error",
2435 "schema" : {
2436 "$ref" : "#/definitions/Error"
2437 }
2438 }
2439 }
2440 }
2441 },
2442 "/lookup_accounts" : {
2443 "get" : {
2444 "summary" : "lookup_accounts",
2445 "description" : "lookup_accounts regex search\n",
2446 "parameters" : [ {
2447 "name" : "lowerBoundName",
2448 "in" : "query",
2449 "description" : "lowerBoundName.",
2450 "required" : true,
2451 "type" : "string",
2452 "format" : "string",
2453 "default" : "good-kar"
2454 }, {
2455 "name" : "limit",
2456 "in" : "query",
2457 "description" : "limit.",
2458 "required" : true,
2459 "type" : "number",
2460 "format" : "number",
2461 "default" : 10
2462 } ],
2463 "tags" : [ "Condenser Api" ],
2464 "responses" : {
2465 "200" : {
2466 "description" : "Result",
2467 "schema" : {
2468 "type" : "array",
2469 "items" : {
2470 "$ref" : "#/definitions/_"
2471 }
2472 }
2473 },
2474 "default" : {
2475 "description" : "Unexpected error",
2476 "schema" : {
2477 "$ref" : "#/definitions/Error"
2478 }
2479 }
2480 }
2481 }
2482 },
2483 "/get_follow_count" : {
2484 "get" : {
2485 "summary" : "get_follow_count",
2486 "description" : "get_follow_count\n",
2487 "parameters" : [ {
2488 "name" : "account",
2489 "in" : "query",
2490 "description" : "account name.",
2491 "required" : true,
2492 "type" : "string",
2493 "format" : "string",
2494 "default" : "good-karma"
2495 } ],
2496 "tags" : [ "Follow Api", "Condenser Api" ],
2497 "responses" : {
2498 "200" : {
2499 "description" : "Result",
2500 "schema" : {
2501 "type" : "array",
2502 "items" : {
2503 "$ref" : "#/definitions/_"
2504 }
2505 }
2506 },
2507 "default" : {
2508 "description" : "Unexpected error",
2509 "schema" : {
2510 "$ref" : "#/definitions/Error"
2511 }
2512 }
2513 }
2514 }
2515 },
2516 "/get_followers" : {
2517 "get" : {
2518 "summary" : "get_followers",
2519 "description" : "get_followers\n",
2520 "parameters" : [ {
2521 "name" : "following",
2522 "in" : "query",
2523 "description" : "account name.",
2524 "required" : true,
2525 "type" : "string",
2526 "format" : "string",
2527 "default" : "good-karma"
2528 }, {
2529 "name" : "startFollower",
2530 "in" : "query",
2531 "description" : "account name from followers for pagination.",
2532 "required" : true,
2533 "type" : "string",
2534 "format" : "string",
2535 "default" : "fabien"
2536 }, {
2537 "name" : "followType",
2538 "in" : "query",
2539 "description" : "follow type blog, etc.",
2540 "required" : true,
2541 "type" : "string",
2542 "format" : "string",
2543 "default" : "blog"
2544 }, {
2545 "name" : "limit",
2546 "in" : "query",
2547 "description" : "size of array for pagination.",
2548 "required" : true,
2549 "type" : "number",
2550 "format" : "number",
2551 "default" : 10
2552 } ],
2553 "tags" : [ "Follow Api", "Condenser Api" ],
2554 "responses" : {
2555 "200" : {
2556 "description" : "Result",
2557 "schema" : {
2558 "type" : "array",
2559 "items" : {
2560 "$ref" : "#/definitions/_"
2561 }
2562 }
2563 },
2564 "default" : {
2565 "description" : "Unexpected error",
2566 "schema" : {
2567 "$ref" : "#/definitions/Error"
2568 }
2569 }
2570 }
2571 }
2572 },
2573 "/get_following" : {
2574 "get" : {
2575 "summary" : "get_following",
2576 "description" : "get_following\n",
2577 "parameters" : [ {
2578 "name" : "follower",
2579 "in" : "query",
2580 "description" : "account name.",
2581 "required" : true,
2582 "type" : "string",
2583 "format" : "string",
2584 "default" : "good-karma"
2585 }, {
2586 "name" : "startFollowing",
2587 "in" : "query",
2588 "description" : "account name from followings for pagination.",
2589 "required" : true,
2590 "type" : "string",
2591 "format" : "string",
2592 "default" : "fabien"
2593 }, {
2594 "name" : "followType",
2595 "in" : "query",
2596 "description" : "follow type blog, etc.",
2597 "required" : true,
2598 "type" : "string",
2599 "format" : "string",
2600 "default" : "blog"
2601 }, {
2602 "name" : "limit",
2603 "in" : "query",
2604 "description" : "size of array for pagination.",
2605 "required" : true,
2606 "type" : "number",
2607 "format" : "number",
2608 "default" : 10
2609 } ],
2610 "tags" : [ "Follow Api", "Account By Key Api", "Condenser Api" ],
2611 "responses" : {
2612 "200" : {
2613 "description" : "Result",
2614 "schema" : {
2615 "type" : "array",
2616 "items" : {
2617 "$ref" : "#/definitions/_"
2618 }
2619 }
2620 },
2621 "default" : {
2622 "description" : "Unexpected error",
2623 "schema" : {
2624 "$ref" : "#/definitions/Error"
2625 }
2626 }
2627 }
2628 }
2629 },
2630 "/get_expiring_vesting_delegations" : {
2631 "get" : {
2632 "summary" : "get_expiring_vesting_delegations",
2633 "description" : "Returns the expiring vesting delegations for an account. Parameters: account:string, after:timestamp\n",
2634 "parameters" : [ {
2635 "name" : "account",
2636 "in" : "query",
2637 "description" : "account name.",
2638 "required" : true,
2639 "type" : "string",
2640 "format" : "string",
2641 "default" : "Gblit"
2642 }, {
2643 "name" : "after",
2644 "in" : "query",
2645 "description" : "sample Queries for expiring vesting after January 1st, 2018.",
2646 "required" : true,
2647 "type" : "integer",
2648 "format" : "int32",
2649 "default" : 7595656
2650 } ],
2651 "tags" : [ "Condenser Api" ],
2652 "responses" : {
2653 "200" : {
2654 "description" : "Result",
2655 "schema" : {
2656 "type" : "array",
2657 "items" : {
2658 "$ref" : "#/definitions/_"
2659 }
2660 }
2661 },
2662 "default" : {
2663 "description" : "Unexpected error",
2664 "schema" : {
2665 "$ref" : "#/definitions/Error"
2666 }
2667 }
2668 }
2669 }
2670 },
2671 "/get_escrow" : {
2672 "get" : {
2673 "summary" : "get_escrow",
2674 "description" : "get_escrow\n",
2675 "parameters" : [ {
2676 "name" : "from",
2677 "in" : "query",
2678 "description" : "account name.",
2679 "required" : true,
2680 "type" : "string",
2681 "format" : "string",
2682 "default" : "good-karma"
2683 }, {
2684 "name" : "escrowId",
2685 "in" : "query",
2686 "description" : "id.",
2687 "required" : true,
2688 "type" : "integer",
2689 "format" : "int32"
2690 } ],
2691 "responses" : {
2692 "200" : {
2693 "description" : "Result",
2694 "schema" : {
2695 "type" : "array",
2696 "items" : {
2697 "$ref" : "#/definitions/_"
2698 }
2699 }
2700 },
2701 "default" : {
2702 "description" : "Unexpected error",
2703 "schema" : {
2704 "$ref" : "#/definitions/Error"
2705 }
2706 }
2707 },
2708 "tags" : [ "Condenser Api" ]
2709 }
2710 },
2711 "/get_withdraw_routes" : {
2712 "get" : {
2713 "summary" : "get_withdraw_routes",
2714 "description" : "get_withdraw_routes\n",
2715 "parameters" : [ {
2716 "name" : "account",
2717 "in" : "query",
2718 "description" : "account name.",
2719 "required" : true,
2720 "type" : "string",
2721 "format" : "string",
2722 "default" : "clayop"
2723 }, {
2724 "name" : "withdrawRouteType",
2725 "in" : "query",
2726 "description" : "withdrawRouteType.",
2727 "required" : false,
2728 "type" : "string",
2729 "format" : "string"
2730 } ],
2731 "tags" : [ "Condenser Api" ],
2732 "responses" : {
2733 "200" : {
2734 "description" : "Result",
2735 "schema" : {
2736 "type" : "array",
2737 "items" : {
2738 "$ref" : "#/definitions/_"
2739 }
2740 }
2741 },
2742 "default" : {
2743 "description" : "Unexpected error",
2744 "schema" : {
2745 "$ref" : "#/definitions/Error"
2746 }
2747 }
2748 }
2749 }
2750 },
2751 "/get_account_bandwidth" : {
2752 "get" : {
2753 "summary" : "get_account_bandwidth",
2754 "description" : "get_account_bandwidth\n",
2755 "parameters" : [ {
2756 "name" : "account",
2757 "in" : "query",
2758 "description" : "account name.",
2759 "required" : true,
2760 "type" : "string",
2761 "format" : "string",
2762 "default" : "good-karma"
2763 }, {
2764 "name" : "bandwidthType",
2765 "in" : "query",
2766 "description" : "bandwidthType.",
2767 "required" : false,
2768 "type" : "string",
2769 "format" : "string"
2770 } ],
2771 "tags" : [ "Witness Api" ],
2772 "responses" : {
2773 "200" : {
2774 "description" : "Result",
2775 "schema" : {
2776 "type" : "array",
2777 "items" : {
2778 "$ref" : "#/definitions/_"
2779 }
2780 }
2781 },
2782 "default" : {
2783 "description" : "Unexpected error",
2784 "schema" : {
2785 "$ref" : "#/definitions/Error"
2786 }
2787 }
2788 }
2789 }
2790 },
2791 "/get_reblogged_by" : {
2792 "get" : {
2793 "summary" : "follow_api.get_reblogged_by",
2794 "description" : "Returns a list of account reputations\n",
2795 "parameters" : [ {
2796 "name" : "account_lower_bound",
2797 "in" : "query",
2798 "required" : true,
2799 "type" : "string",
2800 "format" : "string"
2801 }, {
2802 "name" : "limit",
2803 "in" : "query",
2804 "description" : "limit number",
2805 "required" : true,
2806 "type" : "number",
2807 "format" : "int32",
2808 "default" : 0
2809 } ],
2810 "tags" : [ "Follow Api", "Condenser Api" ],
2811 "responses" : {
2812 "200" : {
2813 "description" : "Result",
2814 "schema" : {
2815 "type" : "array",
2816 "items" : {
2817 "$ref" : "#/definitions/get_reserve_ratio"
2818 }
2819 }
2820 },
2821 "default" : {
2822 "description" : "Unexpected error",
2823 "schema" : {
2824 "$ref" : "#/definitions/Error"
2825 }
2826 }
2827 }
2828 }
2829 },
2830 "/get_reserve_ratio" : {
2831 "get" : {
2832 "summary" : "get_reserve_ratio",
2833 "description" : "Returns the current reserve ratio\n",
2834 "tags" : [ "Witness Api" ],
2835 "responses" : {
2836 "200" : {
2837 "description" : "Result",
2838 "schema" : {
2839 "type" : "array",
2840 "items" : {
2841 "$ref" : "#/definitions/get_reserve_ratio"
2842 }
2843 }
2844 },
2845 "default" : {
2846 "description" : "Unexpected error",
2847 "schema" : {
2848 "$ref" : "#/definitions/Error"
2849 }
2850 }
2851 }
2852 }
2853 },
2854 "/get_savings_withdraw_from" : {
2855 "get" : {
2856 "summary" : "get_savings_withdraw_from",
2857 "description" : "get_savings_withdraw_from\n",
2858 "parameters" : [ {
2859 "name" : "account",
2860 "in" : "query",
2861 "description" : "account name.",
2862 "required" : true,
2863 "type" : "string",
2864 "format" : "string",
2865 "default" : "jesta"
2866 } ],
2867 "responses" : {
2868 "200" : {
2869 "description" : "Result",
2870 "schema" : {
2871 "type" : "array",
2872 "items" : {
2873 "$ref" : "#/definitions/_"
2874 }
2875 }
2876 },
2877 "default" : {
2878 "description" : "Unexpected error",
2879 "schema" : {
2880 "$ref" : "#/definitions/Error"
2881 }
2882 }
2883 },
2884 "tags" : [ "Condenser Api" ]
2885 }
2886 },
2887 "/get_savings_withdraw_to" : {
2888 "get" : {
2889 "summary" : "get_savings_withdraw_to",
2890 "description" : "get_savings_withdraw_to\n",
2891 "parameters" : [ {
2892 "name" : "account",
2893 "in" : "query",
2894 "description" : "account name.",
2895 "required" : true,
2896 "type" : "string",
2897 "format" : "string",
2898 "default" : "jesta"
2899 } ],
2900 "responses" : {
2901 "200" : {
2902 "description" : "Result",
2903 "schema" : {
2904 "type" : "array",
2905 "items" : {
2906 "$ref" : "#/definitions/_"
2907 }
2908 }
2909 },
2910 "default" : {
2911 "description" : "Unexpected error",
2912 "schema" : {
2913 "$ref" : "#/definitions/Error"
2914 }
2915 }
2916 },
2917 "tags" : [ "Condenser Api" ]
2918 }
2919 },
2920 "/get_block" : {
2921 "get" : {
2922 "summary" : "get block",
2923 "description" : "get block\n",
2924 "parameters" : [ {
2925 "name" : "blockNum",
2926 "in" : "query",
2927 "description" : "get block content/transactions.",
2928 "required" : true,
2929 "type" : "integer",
2930 "format" : "int32",
2931 "default" : 7595656
2932 } ],
2933 "tags" : [ "Block Api" ],
2934 "responses" : {
2935 "200" : {
2936 "description" : "Result",
2937 "schema" : {
2938 "type" : "array",
2939 "items" : {
2940 "$ref" : "#/definitions/_"
2941 }
2942 }
2943 },
2944 "default" : {
2945 "description" : "Unexpected error",
2946 "schema" : {
2947 "$ref" : "#/definitions/Error"
2948 }
2949 }
2950 }
2951 }
2952 },
2953 "/get_block_header" : {
2954 "get" : {
2955 "summary" : "get block header",
2956 "description" : "get block header\n",
2957 "parameters" : [ {
2958 "name" : "blockNum",
2959 "in" : "query",
2960 "description" : "get block header, witness, timestamp.",
2961 "required" : true,
2962 "type" : "integer",
2963 "format" : "int32",
2964 "default" : 7595656
2965 } ],
2966 "tags" : [ "Block Api" ],
2967 "responses" : {
2968 "200" : {
2969 "description" : "Result",
2970 "schema" : {
2971 "type" : "array",
2972 "items" : {
2973 "$ref" : "#/definitions/_"
2974 }
2975 }
2976 },
2977 "default" : {
2978 "description" : "Unexpected error",
2979 "schema" : {
2980 "$ref" : "#/definitions/Error"
2981 }
2982 }
2983 }
2984 }
2985 },
2986 "/get_blog" : {
2987 "get" : {
2988 "summary" : "get blog",
2989 "description" : "Returns the list of blog entries for an account. Parameters: account:string; start_entry_id:int; limit:int up to 500\n",
2990 "parameters" : [ {
2991 "name" : "account",
2992 "in" : "query",
2993 "description" : "account name",
2994 "required" : true,
2995 "type" : "string",
2996 "format" : "string",
2997 "default" : "Gblit"
2998 }, {
2999 "name" : "start_entry_id",
3000 "in" : "query",
3001 "description" : "start id",
3002 "required" : true,
3003 "type" : "number",
3004 "format" : "int32",
3005 "default" : 0
3006 }, {
3007 "name" : "limit",
3008 "in" : "query",
3009 "description" : "limit number",
3010 "required" : true,
3011 "type" : "number",
3012 "format" : "int32",
3013 "default" : 0
3014 } ],
3015 "tags" : [ "Follow Api" ],
3016 "responses" : {
3017 "200" : {
3018 "description" : "Result",
3019 "schema" : {
3020 "type" : "array",
3021 "items" : {
3022 "$ref" : "#/definitions/_"
3023 }
3024 }
3025 },
3026 "default" : {
3027 "description" : "Unexpected error",
3028 "schema" : {
3029 "$ref" : "#/definitions/Error"
3030 }
3031 }
3032 }
3033 }
3034 },
3035 "/get_blog_authors" : {
3036 "get" : {
3037 "summary" : "get blog authors",
3038 "description" : "Returns a list of authors that have had their content reblogged on a given blog account. Parameters: account:string\n",
3039 "parameters" : [ {
3040 "name" : "account",
3041 "in" : "query",
3042 "description" : "account name",
3043 "required" : true,
3044 "type" : "string",
3045 "format" : "string",
3046 "default" : "Gblit"
3047 } ],
3048 "tags" : [ "Follow Api" ],
3049 "responses" : {
3050 "200" : {
3051 "description" : "Result",
3052 "schema" : {
3053 "type" : "array",
3054 "items" : {
3055 "$ref" : "#/definitions/_"
3056 }
3057 }
3058 },
3059 "default" : {
3060 "description" : "Unexpected error",
3061 "schema" : {
3062 "$ref" : "#/definitions/Error"
3063 }
3064 }
3065 }
3066 }
3067 },
3068 "/get_blog_entries" : {
3069 "get" : {
3070 "summary" : "get blog entries",
3071 "description" : "Returns a list of blog entries for an account. Parameters: account:string; start_entry_id:int; limit:int up to 500\n",
3072 "parameters" : [ {
3073 "name" : "account",
3074 "in" : "query",
3075 "description" : "account name",
3076 "required" : true,
3077 "type" : "string",
3078 "format" : "string",
3079 "default" : "Gblit"
3080 }, {
3081 "name" : "start_entry_id",
3082 "in" : "query",
3083 "description" : "start id",
3084 "required" : true,
3085 "type" : "number",
3086 "format" : "int32",
3087 "default" : 0
3088 }, {
3089 "name" : "limit",
3090 "in" : "query",
3091 "description" : "limit number",
3092 "required" : true,
3093 "type" : "number",
3094 "format" : "int32",
3095 "default" : 0
3096 } ],
3097 "tags" : [ "Follow Api" ],
3098 "responses" : {
3099 "200" : {
3100 "description" : "Result",
3101 "schema" : {
3102 "type" : "array",
3103 "items" : {
3104 "$ref" : "#/definitions/_"
3105 }
3106 }
3107 },
3108 "default" : {
3109 "description" : "Unexpected error",
3110 "schema" : {
3111 "$ref" : "#/definitions/Error"
3112 }
3113 }
3114 }
3115 }
3116 },
3117 "/get_ops_in_block" : {
3118 "get" : {
3119 "summary" : "get_ops_in_block",
3120 "description" : "get_ops_in_block\n",
3121 "parameters" : [ {
3122 "name" : "blockNum",
3123 "in" : "query",
3124 "description" : "block number.",
3125 "required" : true,
3126 "type" : "integer",
3127 "format" : "int32",
3128 "default" : 8836129
3129 }, {
3130 "name" : "onlyVirtual",
3131 "in" : "query",
3132 "description" : "onlyVirtual.",
3133 "required" : true,
3134 "type" : "boolean",
3135 "format" : "bool",
3136 "default" : false
3137 } ],
3138 "tags" : [ "Follow Api", "Account History Api", "Condenser Api" ],
3139 "responses" : {
3140 "200" : {
3141 "description" : "Result",
3142 "schema" : {
3143 "type" : "array",
3144 "items" : {
3145 "$ref" : "#/definitions/_"
3146 }
3147 }
3148 },
3149 "default" : {
3150 "description" : "Unexpected error",
3151 "schema" : {
3152 "$ref" : "#/definitions/Error"
3153 }
3154 }
3155 }
3156 }
3157 },
3158 "/get_tags_by_author" : {
3159 "get" : {
3160 "summary" : "Returns a list of tags used by an author. Parameters author:string",
3161 "description" : "Returns a list of tags used by an author. Parameters author:string\n",
3162 "parameters" : [ {
3163 "name" : "author",
3164 "in" : "query",
3165 "description" : "account name.",
3166 "required" : true,
3167 "type" : "string",
3168 "format" : "string",
3169 "default" : "Gblit"
3170 } ],
3171 "tags" : [ "Tags Api", "Condenser Api" ],
3172 "responses" : {
3173 "200" : {
3174 "description" : "Result",
3175 "schema" : {
3176 "type" : "array",
3177 "items" : {
3178 "$ref" : "#/definitions/_"
3179 }
3180 }
3181 },
3182 "default" : {
3183 "description" : "Unexpected error",
3184 "schema" : {
3185 "$ref" : "#/definitions/Error"
3186 }
3187 }
3188 }
3189 }
3190 },
3191 "/get_trade_history" : {
3192 "get" : {
3193 "summary" : "get trade history",
3194 "description" : "Returns the trade history for the internal SBD:Gbl market.\n",
3195 "parameters" : [ {
3196 "name" : "start",
3197 "in" : "query",
3198 "description" : "timestamp start",
3199 "required" : true,
3200 "type" : "number",
3201 "format" : "int32"
3202 }, {
3203 "name" : "end",
3204 "in" : "query",
3205 "description" : "timestamp end.",
3206 "required" : true,
3207 "type" : "number",
3208 "format" : "int32"
3209 }, {
3210 "name" : "limit",
3211 "in" : "query",
3212 "description" : "limit.",
3213 "required" : true,
3214 "type" : "number",
3215 "format" : "int",
3216 "default" : 1000
3217 } ],
3218 "tags" : [ "Market History Api", "Condenser Api" ],
3219 "responses" : {
3220 "200" : {
3221 "description" : "Result",
3222 "schema" : {
3223 "type" : "array",
3224 "items" : {
3225 "$ref" : "#/definitions/_"
3226 }
3227 }
3228 },
3229 "default" : {
3230 "description" : "Unexpected error",
3231 "schema" : {
3232 "$ref" : "#/definitions/Error"
3233 }
3234 }
3235 }
3236 }
3237 },
3238 "/get_transaction_hex" : {
3239 "get" : {
3240 "summary" : "get_transaction_hex",
3241 "description" : "get_transaction_hex\n",
3242 "parameters" : [ {
3243 "name" : "trx",
3244 "in" : "query",
3245 "description" : "transaction hex.",
3246 "required" : true,
3247 "type" : "string",
3248 "format" : "string"
3249 } ],
3250 "responses" : {
3251 "200" : {
3252 "description" : "Result",
3253 "schema" : {
3254 "type" : "array",
3255 "items" : {
3256 "$ref" : "#/definitions/_"
3257 }
3258 }
3259 },
3260 "default" : {
3261 "description" : "Unexpected error",
3262 "schema" : {
3263 "$ref" : "#/definitions/Error"
3264 }
3265 }
3266 },
3267 "tags" : [ "Condenser Api" ]
3268 }
3269 },
3270 "/get_transaction" : {
3271 "get" : {
3272 "summary" : "get_transaction",
3273 "description" : "get_transaction\n",
3274 "parameters" : [ {
3275 "name" : "trxId",
3276 "in" : "query",
3277 "description" : "transaction id.",
3278 "required" : true,
3279 "type" : "string",
3280 "format" : "string",
3281 "default" : "b86745936b1e471c0efb78d0f80bd331f984d11f"
3282 } ],
3283 "tags" : [ "Account History Api", "Condenser Api" ],
3284 "responses" : {
3285 "200" : {
3286 "description" : "Result",
3287 "schema" : {
3288 "type" : "array",
3289 "items" : {
3290 "$ref" : "#/definitions/_"
3291 }
3292 }
3293 },
3294 "default" : {
3295 "description" : "Unexpected error",
3296 "schema" : {
3297 "$ref" : "#/definitions/Error"
3298 }
3299 }
3300 }
3301 }
3302 },
3303 "/get_required_signatures" : {
3304 "get" : {
3305 "summary" : "get_required_signatures",
3306 "description" : "get_required_signatures\n",
3307 "parameters" : [ {
3308 "name" : "trx",
3309 "in" : "query",
3310 "description" : "transaction.",
3311 "required" : true,
3312 "type" : "string",
3313 "format" : "string"
3314 }, {
3315 "name" : "availableKeys",
3316 "in" : "query",
3317 "description" : "availableKeys.",
3318 "required" : true,
3319 "type" : "string",
3320 "format" : "string"
3321 } ],
3322 "responses" : {
3323 "200" : {
3324 "description" : "Result",
3325 "schema" : {
3326 "type" : "array",
3327 "items" : {
3328 "$ref" : "#/definitions/_"
3329 }
3330 }
3331 },
3332 "default" : {
3333 "description" : "Unexpected error",
3334 "schema" : {
3335 "$ref" : "#/definitions/Error"
3336 }
3337 }
3338 },
3339 "tags" : [ "Condenser Api" ]
3340 }
3341 },
3342 "/get_potential_signatures" : {
3343 "get" : {
3344 "summary" : "get_potential_signatures",
3345 "description" : "get_potential_signatures\n",
3346 "parameters" : [ {
3347 "name" : "trx",
3348 "in" : "query",
3349 "description" : "transaction.",
3350 "required" : true,
3351 "type" : "string",
3352 "format" : "string"
3353 } ],
3354 "responses" : {
3355 "200" : {
3356 "description" : "Result",
3357 "schema" : {
3358 "type" : "array",
3359 "items" : {
3360 "$ref" : "#/definitions/_"
3361 }
3362 }
3363 },
3364 "default" : {
3365 "description" : "Unexpected error",
3366 "schema" : {
3367 "$ref" : "#/definitions/Error"
3368 }
3369 }
3370 },
3371 "tags" : [ "Condenser Api" ]
3372 }
3373 },
3374 "/verify_authority" : {
3375 "get" : {
3376 "summary" : "verify_authority",
3377 "description" : "Returns true if the transaction has all of the required signatures.",
3378 "parameters" : [ {
3379 "name" : "trx",
3380 "in" : "query",
3381 "description" : "transaction.",
3382 "required" : true,
3383 "type" : "string",
3384 "format" : "string"
3385 } ],
3386 "responses" : {
3387 "200" : {
3388 "description" : "Result",
3389 "schema" : {
3390 "type" : "array",
3391 "items" : {
3392 "$ref" : "#/definitions/_"
3393 }
3394 }
3395 },
3396 "default" : {
3397 "description" : "Unexpected error",
3398 "schema" : {
3399 "$ref" : "#/definitions/Error"
3400 }
3401 }
3402 },
3403 "tags" : [ "Condenser Api" ]
3404 }
3405 },
3406 "/verify_account_authority" : {
3407 "get" : {
3408 "summary" : "verify_account_authority",
3409 "description" : "condenser_api.verify_account_authority\n",
3410 "parameters" : [ {
3411 "name" : "nameOrId",
3412 "in" : "query",
3413 "description" : "nameOrId.",
3414 "required" : true,
3415 "type" : "string",
3416 "format" : "string"
3417 }, {
3418 "name" : "signers",
3419 "in" : "query",
3420 "description" : "signers.",
3421 "required" : true,
3422 "type" : "string",
3423 "format" : "string"
3424 } ],
3425 "responses" : {
3426 "200" : {
3427 "description" : "Result",
3428 "schema" : {
3429 "type" : "array",
3430 "items" : {
3431 "$ref" : "#/definitions/_"
3432 }
3433 }
3434 },
3435 "default" : {
3436 "description" : "Unexpected error",
3437 "schema" : {
3438 "$ref" : "#/definitions/Error"
3439 }
3440 }
3441 },
3442 "tags" : [ "Condenser Api" ]
3443 }
3444 },
3445 "/get_key_references" : {
3446 "get" : {
3447 "summary" : "get_key_references",
3448 "description" : "get_key_references\n",
3449 "parameters" : [ {
3450 "name" : "key",
3451 "in" : "query",
3452 "description" : "key.",
3453 "required" : true,
3454 "type" : "string",
3455 "format" : "string",
3456 "default" : ""
3457 } ],
3458 "tags" : [ "Condenser Api" ],
3459 "responses" : {
3460 "200" : {
3461 "description" : "Result",
3462 "schema" : {
3463 "type" : "array",
3464 "items" : {
3465 "$ref" : "#/definitions/_"
3466 }
3467 }
3468 },
3469 "default" : {
3470 "description" : "Unexpected error",
3471 "schema" : {
3472 "$ref" : "#/definitions/Error"
3473 }
3474 }
3475 }
3476 }
3477 },
3478 "/broadcast_transaction" : {
3479 "get" : {
3480 "summary" : "condenser_api.broadcast_transaction",
3481 "description" : "Used to broadcast a transaction.\n",
3482 "parameters" : [ {
3483 "name" : "trx",
3484 "in" : "query",
3485 "description" : "transaction.",
3486 "required" : true,
3487 "type" : "string",
3488 "format" : "string"
3489 } ],
3490 "tags" : [ "Condenser Api", "Network Broadcast Api" ],
3491 "responses" : {
3492 "200" : {
3493 "description" : "Result",
3494 "schema" : {
3495 "type" : "array",
3496 "items" : {
3497 "$ref" : "#/definitions/broadcast_transaction"
3498 }
3499 }
3500 },
3501 "default" : {
3502 "description" : "Unexpected error",
3503 "schema" : {
3504 "$ref" : "#/definitions/Error"
3505 }
3506 }
3507 }
3508 }
3509 },
3510 "/broadcast_transaction_synchronous" : {
3511 "get" : {
3512 "summary" : "broadcast_transaction_synchronous",
3513 "description" : "broadcast_transaction_synchronous\n",
3514 "parameters" : [ {
3515 "name" : "trx",
3516 "in" : "query",
3517 "description" : "transaction.",
3518 "required" : true,
3519 "type" : "string",
3520 "format" : "string"
3521 } ],
3522 "tags" : [ "Condenser Api" ],
3523 "responses" : {
3524 "200" : {
3525 "description" : "Result",
3526 "schema" : {
3527 "type" : "array",
3528 "items" : {
3529 "$ref" : "#/definitions/_"
3530 }
3531 }
3532 },
3533 "default" : {
3534 "description" : "Unexpected error",
3535 "schema" : {
3536 "$ref" : "#/definitions/Error"
3537 }
3538 }
3539 }
3540 }
3541 },
3542 "/broadcast_block" : {
3543 "get" : {
3544 "summary" : "broadcast_block",
3545 "description" : "broadcast_block\n",
3546 "parameters" : [ {
3547 "name" : "b",
3548 "in" : "query",
3549 "description" : "block.",
3550 "required" : true,
3551 "type" : "string",
3552 "format" : "string"
3553 } ],
3554 "tags" : [ "Network Broadcast Api" ],
3555 "responses" : {
3556 "200" : {
3557 "description" : "Result",
3558 "schema" : {
3559 "type" : "array",
3560 "items" : {
3561 "$ref" : "#/definitions/broadcast_block"
3562 }
3563 }
3564 },
3565 "default" : {
3566 "description" : "Unexpected error",
3567 "schema" : {
3568 "$ref" : "#/definitions/Error"
3569 }
3570 }
3571 }
3572 }
3573 },
3574 "/broadcast_transaction_with_callback" : {
3575 "get" : {
3576 "summary" : "WARNING: can only be used in Gbl node or in scripts broadcast_transaction_with_callback\n",
3577 "description" : "broadcast_transaction_with_callback\n",
3578 "parameters" : [ {
3579 "name" : "confirmationCallback",
3580 "in" : "query",
3581 "description" : "confirmationCallback function.",
3582 "type" : "string",
3583 "format" : "string"
3584 }, {
3585 "name" : "trx",
3586 "in" : "query",
3587 "description" : "transaction.",
3588 "type" : "string",
3589 "format" : "string"
3590 } ],
3591 "responses" : {
3592 "200" : {
3593 "description" : "Result",
3594 "schema" : {
3595 "type" : "array",
3596 "items" : {
3597 "$ref" : "#/definitions/_"
3598 }
3599 }
3600 },
3601 "default" : {
3602 "description" : "Unexpected error",
3603 "schema" : {
3604 "$ref" : "#/definitions/Error"
3605 }
3606 }
3607 },
3608 "tags" : [ "Condenser Api" ]
3609 }
3610 },
3611 "/set_max_block_age" : {
3612 "get" : {
3613 "summary" : "WARNING: can only be used in Gbl node or in scripts set_max_block_age\n",
3614 "description" : "set_max_block_age\n",
3615 "parameters" : [ {
3616 "name" : "maxBlockAge",
3617 "in" : "query",
3618 "description" : "maxBlockAge.",
3619 "required" : true,
3620 "type" : "integer",
3621 "format" : "int32"
3622 } ],
3623 "responses" : {
3624 "200" : {
3625 "description" : "Result",
3626 "schema" : {
3627 "type" : "array",
3628 "items" : {
3629 "$ref" : "#/definitions/_"
3630 }
3631 }
3632 },
3633 "default" : {
3634 "description" : "Unexpected error",
3635 "schema" : {
3636 "$ref" : "#/definitions/Error"
3637 }
3638 }
3639 },
3640 "tags" : [ "Condenser Api" ]
3641 }
3642 },
3643 "/set_pending_transaction_callback" : {
3644 "get" : {
3645 "summary" : "WARNING: can only be used in Gbl node or in scripts set_pending_transaction_callback\n",
3646 "description" : "set_pending_transaction_callback \n",
3647 "parameters" : [ {
3648 "name" : "cb",
3649 "in" : "query",
3650 "description" : "callback function.",
3651 "type" : "string",
3652 "format" : "string"
3653 } ],
3654 "responses" : {
3655 "200" : {
3656 "description" : "Result",
3657 "schema" : {
3658 "type" : "array",
3659 "items" : {
3660 "$ref" : "#/definitions/_"
3661 }
3662 }
3663 },
3664 "default" : {
3665 "description" : "Unexpected error",
3666 "schema" : {
3667 "$ref" : "#/definitions/Error"
3668 }
3669 }
3670 },
3671 "tags" : [ "Condenser Api" ]
3672 }
3673 },
3674 "/set_block_applied_callback" : {
3675 "get" : {
3676 "summary" : "WARNING: can only be used in Gbl node or in scripts set_block_applied_callback\n",
3677 "description" : "set_block_applied_callback \n",
3678 "parameters" : [ {
3679 "name" : "cb",
3680 "in" : "query",
3681 "description" : "callback function.",
3682 "type" : "string",
3683 "format" : "string"
3684 } ],
3685 "responses" : {
3686 "200" : {
3687 "description" : "Result",
3688 "schema" : {
3689 "type" : "array",
3690 "items" : {
3691 "$ref" : "#/definitions/_"
3692 }
3693 }
3694 },
3695 "default" : {
3696 "description" : "Unexpected error",
3697 "schema" : {
3698 "$ref" : "#/definitions/Error"
3699 }
3700 }
3701 },
3702 "tags" : [ "Condenser Api" ]
3703 }
3704 },
3705 "/cancel_all_subscriptions" : {
3706 "get" : {
3707 "summary" : "WARNING: can only be used in Gbl node or in scripts cancel_all_subscriptions\n",
3708 "description" : "cancel_all_subscriptions \n",
3709 "responses" : {
3710 "200" : {
3711 "description" : "Result",
3712 "schema" : {
3713 "type" : "array",
3714 "items" : {
3715 "$ref" : "#/definitions/_"
3716 }
3717 }
3718 },
3719 "default" : {
3720 "description" : "Unexpected error",
3721 "schema" : {
3722 "$ref" : "#/definitions/Error"
3723 }
3724 }
3725 },
3726 "tags" : [ "Condenser Api" ]
3727 }
3728 },
3729 "/get_api_by_name" : {
3730 "get" : {
3731 "summary" : "get_api_by_name",
3732 "description" : "get_api_by_name\n",
3733 "parameters" : [ {
3734 "name" : "apiName",
3735 "in" : "query",
3736 "description" : "apiName.",
3737 "required" : true,
3738 "type" : "string",
3739 "format" : "string"
3740 } ],
3741 "responses" : {
3742 "200" : {
3743 "description" : "Result",
3744 "schema" : {
3745 "type" : "array",
3746 "items" : {
3747 "$ref" : "#/definitions/_"
3748 }
3749 }
3750 },
3751 "default" : {
3752 "description" : "Unexpected error",
3753 "schema" : {
3754 "$ref" : "#/definitions/Error"
3755 }
3756 }
3757 },
3758 "tags" : [ "Condenser Api" ]
3759 }
3760 },
3761 "/swagger" : {
3762 "x-swagger-pipe" : "swagger_raw"
3763 }
3764 },
3765 "definitions" : {
3766 "_" : {
3767 "type" : "object",
3768 "description" : "describe output object json and properties",
3769 "properties" : {
3770 "example" : {
3771 "type" : "string",
3772 "description" : "description of example"
3773 },
3774 "example_" : {
3775 "type" : "string",
3776 "description" : "description of example_ etc."
3777 }
3778 }
3779 },
3780 "broadcast_block" : {
3781 "type" : "object",
3782 "properties" : {
3783 "previous" : {
3784 "type" : "string"
3785 },
3786 "timestamp" : {
3787 "type" : "string"
3788 },
3789 "witness" : {
3790 "type" : "string"
3791 },
3792 "transaction_merkle_root" : {
3793 "type" : "string"
3794 },
3795 "extensions" : {
3796 "type" : "array",
3797 "items" : {
3798 "type" : "string"
3799 }
3800 },
3801 "witness_signature" : {
3802 "type" : "string"
3803 },
3804 "transactions" : {
3805 "type" : "array",
3806 "items" : {
3807 "type" : "string"
3808 }
3809 }
3810 }
3811 },
3812 "get_reserve_ratio" : {
3813 "type" : "object",
3814 "properties" : {
3815 "id" : {
3816 "type" : "number"
3817 },
3818 "average_block_size" : {
3819 "type" : "number"
3820 },
3821 "current_reserve_ratio" : {
3822 "type" : "number"
3823 },
3824 "max_virtual_badwidth" : {
3825 "type" : "string"
3826 }
3827 }
3828 },
3829 "get_version" : {
3830 "type" : "object",
3831 "properties" : {
3832 "blockchain_version" : {
3833 "type" : "string",
3834 "description" : "release version of blockchain"
3835 },
3836 "Gbl_revision" : {
3837 "type" : "string",
3838 "description" : "Gbl revision hash"
3839 },
3840 "fc_revision" : {
3841 "type" : "string",
3842 "description" : "fc library revision hash"
3843 }
3844 }
3845 },
3846 "get_accounts" : {
3847 "type" : "object",
3848 "description" : "Return accounts, querid by name.",
3849 "properties" : {
3850 "id" : {
3851 "type" : "number"
3852 },
3853 "name" : {
3854 "type" : "string"
3855 },
3856 "owner" : {
3857 "type" : "object",
3858 "properties" : {
3859 "weight_threshold" : {
3860 "type" : "integer"
3861 },
3862 "account_auths" : {
3863 "type" : "array",
3864 "items" : {
3865 "type" : "string"
3866 }
3867 },
3868 "key_auths" : {
3869 "type" : "array",
3870 "items" : {
3871 "type" : "array",
3872 "items" : {
3873 "type" : "string"
3874 }
3875 }
3876 }
3877 }
3878 },
3879 "active" : {
3880 "type" : "object",
3881 "properties" : {
3882 "weight_threshold" : {
3883 "type" : "number"
3884 },
3885 "account_auths" : {
3886 "type" : "array",
3887 "items" : {
3888 "type" : "string"
3889 }
3890 },
3891 "key_auths" : {
3892 "type" : "array",
3893 "items" : {
3894 "type" : "array",
3895 "items" : {
3896 "type" : "string"
3897 }
3898 }
3899 }
3900 }
3901 },
3902 "posting" : {
3903 "type" : "object",
3904 "properties" : {
3905 "weight_threshold" : {
3906 "type" : "number"
3907 },
3908 "account_auths" : {
3909 "type" : "array",
3910 "items" : {
3911 "type" : "string"
3912 }
3913 },
3914 "key_auths" : {
3915 "type" : "array",
3916 "items" : {
3917 "type" : "array",
3918 "items" : {
3919 "type" : "string"
3920 }
3921 }
3922 }
3923 }
3924 },
3925 "memo_key" : {
3926 "type" : "string"
3927 },
3928 "json_metadata" : {
3929 "type" : "string"
3930 },
3931 "proxy" : {
3932 "type" : "string"
3933 },
3934 "last_owner_update" : {
3935 "type" : "string"
3936 },
3937 "last_account_update" : {
3938 "type" : "string"
3939 },
3940 "created" : {
3941 "type" : "string"
3942 },
3943 "mined" : {
3944 "type" : "boolean"
3945 },
3946 "recovery_account" : {
3947 "type" : "string"
3948 },
3949 "last_account_recovery" : {
3950 "type" : "string"
3951 },
3952 "reset_account" : {
3953 "type" : "string"
3954 },
3955 "comment_count" : {
3956 "type" : "number"
3957 },
3958 "lifetime_vote_count" : {
3959 "type" : "number"
3960 },
3961 "post_count" : {
3962 "type" : "number"
3963 },
3964 "can_vote" : {
3965 "type" : "boolean"
3966 },
3967 "voting_power" : {
3968 "type" : "number"
3969 },
3970 "last_vote_time" : {
3971 "type" : "string"
3972 },
3973 "balance" : {
3974 "type" : "string"
3975 },
3976 "savings_balance" : {
3977 "type" : "string"
3978 },
3979 "sbd_balance" : {
3980 "type" : "string"
3981 },
3982 "sbd_seconds" : {
3983 "type" : "string"
3984 },
3985 "sbd_seconds_last_update" : {
3986 "type" : "string"
3987 },
3988 "sbd_last_interest_payment" : {
3989 "type" : "string"
3990 },
3991 "savings_sbd_balance" : {
3992 "type" : "string"
3993 },
3994 "savings_sbd_seconds" : {
3995 "type" : "string"
3996 },
3997 "savings_sbd_seconds_last_update" : {
3998 "type" : "string"
3999 },
4000 "savings_sbd_last_interest_payment" : {
4001 "type" : "string"
4002 },
4003 "savings_withdraw_requests" : {
4004 "type" : "number"
4005 },
4006 "reward_sbd_balance" : {
4007 "type" : "string"
4008 },
4009 "reward_Gbl_balance" : {
4010 "type" : "string"
4011 },
4012 "reward_vesting_balance" : {
4013 "type" : "string"
4014 },
4015 "reward_vesting_Gbl" : {
4016 "type" : "string"
4017 },
4018 "vesting_shares" : {
4019 "type" : "string"
4020 },
4021 "delegated_vesting_shares" : {
4022 "type" : "string"
4023 },
4024 "received_vesting_shares" : {
4025 "type" : "string"
4026 },
4027 "vesting_withdraw_rate" : {
4028 "type" : "string"
4029 },
4030 "next_vesting_withdrawal" : {
4031 "type" : "string"
4032 },
4033 "withdrawn" : {
4034 "type" : "number"
4035 },
4036 "to_withdraw" : {
4037 "type" : "number"
4038 },
4039 "withdraw_routes" : {
4040 "type" : "number"
4041 },
4042 "curation_rewards" : {
4043 "type" : "number"
4044 },
4045 "posting_rewards" : {
4046 "type" : "number"
4047 },
4048 "proxied_vsf_votes" : {
4049 "type" : "array",
4050 "items" : {
4051 "type" : "string"
4052 }
4053 },
4054 "witnesses_voted_for" : {
4055 "type" : "number"
4056 },
4057 "last_post" : {
4058 "type" : "string"
4059 },
4060 "last_root_post" : {
4061 "type" : "string"
4062 },
4063 "vesting_balance" : {
4064 "type" : "string"
4065 },
4066 "reputation" : {
4067 "type" : "string"
4068 },
4069 "transfer_history" : {
4070 "type" : "array",
4071 "items" : {
4072 "type" : "string"
4073 }
4074 },
4075 "market_history" : {
4076 "type" : "array",
4077 "items" : {
4078 "type" : "string"
4079 }
4080 },
4081 "post_history" : {
4082 "type" : "array",
4083 "items" : {
4084 "type" : "string"
4085 }
4086 },
4087 "vote_history" : {
4088 "type" : "array",
4089 "items" : {
4090 "type" : "string"
4091 }
4092 },
4093 "other_history" : {
4094 "type" : "array",
4095 "items" : {
4096 "type" : "string"
4097 }
4098 },
4099 "witness_votes" : {
4100 "type" : "array",
4101 "items" : {
4102 "type" : "string"
4103 }
4104 },
4105 "tags_usage" : {
4106 "type" : "array",
4107 "items" : {
4108 "type" : "string"
4109 }
4110 },
4111 "guest_bloggers" : {
4112 "type" : "array",
4113 "items" : {
4114 "type" : "string"
4115 }
4116 }
4117 }
4118 },
4119 "get_account_bandwidth" : {
4120 "type" : "object",
4121 "properties" : {
4122 "id" : {
4123 "type" : "number"
4124 },
4125 "account" : {
4126 "type" : "string"
4127 },
4128 "type" : {
4129 "type" : "string"
4130 },
4131 "averange_bandwidth" : {
4132 "type" : "number"
4133 },
4134 "lifetime_bandwidth" : {
4135 "type" : "string"
4136 },
4137 "last_bandwidth_update" : {
4138 "type" : "string"
4139 }
4140 }
4141 },
4142 "get_account_count" : {
4143 "type" : "number",
4144 "description" : "number of registered accounts"
4145 },
4146 "get_account_reputations" : {
4147 "type" : "object",
4148 "description" : "list of account reputations"
4149 },
4150 "get_account_history" : {
4151 "type" : "object",
4152 "description" : "history of all operations for a given account"
4153 },
4154 "get_account_votes" : {
4155 "type" : "object",
4156 "description" : "return all votes by an account",
4157 "properties" : {
4158 "authorperm" : {
4159 "type" : "string"
4160 },
4161 "weight" : {
4162 "type" : "string"
4163 },
4164 "rshares" : {
4165 "type" : "string"
4166 },
4167 "percent" : {
4168 "type" : "string"
4169 },
4170 "time" : {
4171 "type" : "string"
4172 }
4173 }
4174 },
4175 "Accounts" : {
4176 "type" : "object",
4177 "properties" : {
4178 "name" : {
4179 "type" : "string",
4180 "description" : "Account name"
4181 },
4182 "description" : {
4183 "type" : "string",
4184 "description" : "Description of product."
4185 },
4186 "json_metadata" : {
4187 "type" : "string",
4188 "description" : "Json data of account"
4189 },
4190 "created" : {
4191 "type" : "string",
4192 "description" : "Account created date and time."
4193 },
4194 "reputation" : {
4195 "type" : "string",
4196 "description" : "Account reputation."
4197 }
4198 }
4199 },
4200 "Error" : {
4201 "type" : "object",
4202 "properties" : {
4203 "code" : {
4204 "type" : "integer",
4205 "format" : "int32"
4206 },
4207 "message" : {
4208 "type" : "string"
4209 }
4210 }
4211 }
4212 }
4213}