alpaca-data 0.10.2

High-performance Rust client for Alpaca Market Data API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
{
  "crate": {
    "name": "alpaca-data",
    "version": "0.10.2",
    "edition": "2024",
    "repository": "https://github.com/wmzhai/alpaca-data-rs",
    "documentation": "https://docs.rs/alpaca-data",
    "homepage": "https://wmzhai.github.io/alpaca-data-rs/",
    "license": "MIT OR Apache-2.0",
    "keywords": [
      "alpaca",
      "market-data",
      "stocks",
      "options",
      "crypto"
    ],
    "categories": [
      "api-bindings",
      "asynchronous"
    ]
  },
  "root": {
    "type": "Client",
    "builder_type": "ClientBuilder",
    "module": "alpaca_data",
    "resource_accessors": [
      "stocks",
      "options",
      "crypto",
      "news",
      "corporate_actions"
    ]
  },
  "modules": [
    {
      "slug": "stocks",
      "module": "alpaca_data::stocks",
      "title": "Stocks",
      "client_type": "StocksClient",
      "summary": "Stock market data endpoints. Mirror methods cover historical batch and single-symbol endpoints, latest endpoints, auction history, snapshots, and metadata endpoints. Convenience methods add:",
      "internal_only": false,
      "methods": [
        {
          "name": "bars",
          "kind": "mirror",
          "async": true,
          "request_type": "BarsRequest",
          "response_type": "Result<BarsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.bars",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.bars"
        },
        {
          "name": "auctions",
          "kind": "mirror",
          "async": true,
          "request_type": "AuctionsRequest",
          "response_type": "Result<AuctionsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.auctions",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.auctions"
        },
        {
          "name": "auctions_all",
          "kind": "convenience",
          "async": true,
          "request_type": "AuctionsRequest",
          "response_type": "Result<AuctionsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.auctions_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.auctions_all"
        },
        {
          "name": "auctions_single",
          "kind": "mirror",
          "async": true,
          "request_type": "AuctionsSingleRequest",
          "response_type": "Result<AuctionsSingleResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.auctions_single",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.auctions_single"
        },
        {
          "name": "auctions_single_all",
          "kind": "convenience",
          "async": true,
          "request_type": "AuctionsSingleRequest",
          "response_type": "Result<AuctionsSingleResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.auctions_single_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.auctions_single_all"
        },
        {
          "name": "auctions_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "AuctionsRequest",
          "response_type": "ResponseStream<Result<AuctionsResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.auctions_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.auctions_stream"
        },
        {
          "name": "auctions_single_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "AuctionsSingleRequest",
          "response_type": "ResponseStream<Result<AuctionsSingleResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.auctions_single_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.auctions_single_stream"
        },
        {
          "name": "bars_all",
          "kind": "convenience",
          "async": true,
          "request_type": "BarsRequest",
          "response_type": "Result<BarsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.bars_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.bars_all"
        },
        {
          "name": "bars_single",
          "kind": "mirror",
          "async": true,
          "request_type": "BarsSingleRequest",
          "response_type": "Result<BarsSingleResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.bars_single",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.bars_single"
        },
        {
          "name": "bars_single_all",
          "kind": "convenience",
          "async": true,
          "request_type": "BarsSingleRequest",
          "response_type": "Result<BarsSingleResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.bars_single_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.bars_single_all"
        },
        {
          "name": "bars_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "BarsRequest",
          "response_type": "ResponseStream<Result<BarsResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.bars_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.bars_stream"
        },
        {
          "name": "bars_single_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "BarsSingleRequest",
          "response_type": "ResponseStream<Result<BarsSingleResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.bars_single_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.bars_single_stream"
        },
        {
          "name": "quotes",
          "kind": "mirror",
          "async": true,
          "request_type": "QuotesRequest",
          "response_type": "Result<QuotesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.quotes",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.quotes"
        },
        {
          "name": "quotes_all",
          "kind": "convenience",
          "async": true,
          "request_type": "QuotesRequest",
          "response_type": "Result<QuotesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.quotes_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.quotes_all"
        },
        {
          "name": "quotes_single",
          "kind": "mirror",
          "async": true,
          "request_type": "QuotesSingleRequest",
          "response_type": "Result<QuotesSingleResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.quotes_single",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.quotes_single"
        },
        {
          "name": "quotes_single_all",
          "kind": "convenience",
          "async": true,
          "request_type": "QuotesSingleRequest",
          "response_type": "Result<QuotesSingleResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.quotes_single_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.quotes_single_all"
        },
        {
          "name": "quotes_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "QuotesRequest",
          "response_type": "ResponseStream<Result<QuotesResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.quotes_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.quotes_stream"
        },
        {
          "name": "quotes_single_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "QuotesSingleRequest",
          "response_type": "ResponseStream<Result<QuotesSingleResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.quotes_single_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.quotes_single_stream"
        },
        {
          "name": "trades",
          "kind": "mirror",
          "async": true,
          "request_type": "TradesRequest",
          "response_type": "Result<TradesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.trades",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.trades"
        },
        {
          "name": "trades_all",
          "kind": "convenience",
          "async": true,
          "request_type": "TradesRequest",
          "response_type": "Result<TradesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.trades_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.trades_all"
        },
        {
          "name": "trades_single",
          "kind": "mirror",
          "async": true,
          "request_type": "TradesSingleRequest",
          "response_type": "Result<TradesSingleResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.trades_single",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.trades_single"
        },
        {
          "name": "trades_single_all",
          "kind": "convenience",
          "async": true,
          "request_type": "TradesSingleRequest",
          "response_type": "Result<TradesSingleResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.trades_single_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.trades_single_all"
        },
        {
          "name": "trades_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "TradesRequest",
          "response_type": "ResponseStream<Result<TradesResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.trades_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.trades_stream"
        },
        {
          "name": "trades_single_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "TradesSingleRequest",
          "response_type": "ResponseStream<Result<TradesSingleResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.trades_single_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.trades_single_stream"
        },
        {
          "name": "latest_bars",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestBarsRequest",
          "response_type": "Result<LatestBarsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.latest_bars",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.latest_bars"
        },
        {
          "name": "latest_bar",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestBarRequest",
          "response_type": "Result<LatestBarResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.latest_bar",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.latest_bar"
        },
        {
          "name": "latest_quotes",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestQuotesRequest",
          "response_type": "Result<LatestQuotesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.latest_quotes",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.latest_quotes"
        },
        {
          "name": "latest_quote",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestQuoteRequest",
          "response_type": "Result<LatestQuoteResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.latest_quote",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.latest_quote"
        },
        {
          "name": "latest_trades",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestTradesRequest",
          "response_type": "Result<LatestTradesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.latest_trades",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.latest_trades"
        },
        {
          "name": "latest_trade",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestTradeRequest",
          "response_type": "Result<LatestTradeResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.latest_trade",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.latest_trade"
        },
        {
          "name": "snapshots",
          "kind": "mirror",
          "async": true,
          "request_type": "SnapshotsRequest",
          "response_type": "Result<SnapshotsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.snapshots",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.snapshots"
        },
        {
          "name": "snapshot",
          "kind": "mirror",
          "async": true,
          "request_type": "SnapshotRequest",
          "response_type": "Result<SnapshotResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.snapshot",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.snapshot"
        },
        {
          "name": "condition_codes",
          "kind": "mirror",
          "async": true,
          "request_type": "ConditionCodesRequest",
          "response_type": "Result<ConditionCodesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.condition_codes",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.condition_codes"
        },
        {
          "name": "exchange_codes",
          "kind": "mirror",
          "async": true,
          "request_type": null,
          "response_type": "Result<ExchangeCodesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/stocks/struct.StocksClient.html#method.exchange_codes",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/stocks/struct.StocksClient.html#method.exchange_codes"
        }
      ],
      "types": {
        "requests": [
          "AuctionsRequest",
          "AuctionsSingleRequest",
          "BarsRequest",
          "BarsSingleRequest",
          "ConditionCodesRequest",
          "LatestBarRequest",
          "LatestBarsRequest",
          "LatestQuoteRequest",
          "LatestQuotesRequest",
          "LatestTradeRequest",
          "LatestTradesRequest",
          "QuotesRequest",
          "QuotesSingleRequest",
          "SnapshotRequest",
          "SnapshotsRequest",
          "TradesRequest",
          "TradesSingleRequest"
        ],
        "responses": [
          "AuctionsResponse",
          "AuctionsSingleResponse",
          "BarsResponse",
          "BarsSingleResponse",
          "ConditionCodesResponse",
          "ExchangeCodesResponse",
          "LatestBarResponse",
          "LatestBarsResponse",
          "LatestQuoteResponse",
          "LatestQuotesResponse",
          "LatestTradeResponse",
          "LatestTradesResponse",
          "QuotesResponse",
          "QuotesSingleResponse",
          "SnapshotResponse",
          "SnapshotsResponse",
          "TradesResponse",
          "TradesSingleResponse"
        ],
        "models": [
          "Auction",
          "Bar",
          "DailyAuction",
          "Quote",
          "Snapshot",
          "Trade"
        ],
        "enums": [
          "Adjustment",
          "AuctionFeed",
          "DataFeed",
          "Tape",
          "TickType",
          "TimeFrame"
        ],
        "shared": []
      },
      "convenience_methods": [
        "auctions_all",
        "auctions_single_all",
        "auctions_stream",
        "auctions_single_stream",
        "bars_all",
        "bars_single_all",
        "bars_stream",
        "bars_single_stream",
        "quotes_all",
        "quotes_single_all",
        "quotes_stream",
        "quotes_single_stream",
        "trades_all",
        "trades_single_all",
        "trades_stream",
        "trades_single_stream"
      ],
      "examples": [
        "examples/stocks_bars_all.rs",
        "examples/stocks_latest_bar.rs"
      ],
      "tests": [
        "tests/live_stocks_auctions.rs",
        "tests/live_stocks_batch_historical.rs",
        "tests/live_stocks_latest_snapshot.rs",
        "tests/live_stocks_metadata.rs",
        "tests/live_stocks_single_historical.rs",
        "tests/mock_stocks_errors.rs"
      ],
      "benches": [
        "benches/stocks.rs"
      ]
    },
    {
      "slug": "options",
      "module": "alpaca_data::options",
      "title": "Options",
      "client_type": "OptionsClient",
      "summary": "Options market data endpoints. Mirror methods cover historical bars and trades, latest quotes and trades, snapshots, chain lookups, and metadata endpoints. Convenience methods add:",
      "internal_only": false,
      "methods": [
        {
          "name": "bars",
          "kind": "mirror",
          "async": true,
          "request_type": "BarsRequest",
          "response_type": "Result<BarsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.bars",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.bars"
        },
        {
          "name": "bars_all",
          "kind": "convenience",
          "async": true,
          "request_type": "BarsRequest",
          "response_type": "Result<BarsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.bars_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.bars_all"
        },
        {
          "name": "bars_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "BarsRequest",
          "response_type": "ResponseStream<Result<BarsResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.bars_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.bars_stream"
        },
        {
          "name": "trades",
          "kind": "mirror",
          "async": true,
          "request_type": "TradesRequest",
          "response_type": "Result<TradesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.trades",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.trades"
        },
        {
          "name": "trades_all",
          "kind": "convenience",
          "async": true,
          "request_type": "TradesRequest",
          "response_type": "Result<TradesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.trades_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.trades_all"
        },
        {
          "name": "trades_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "TradesRequest",
          "response_type": "ResponseStream<Result<TradesResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.trades_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.trades_stream"
        },
        {
          "name": "latest_quotes",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestQuotesRequest",
          "response_type": "Result<LatestQuotesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.latest_quotes",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.latest_quotes"
        },
        {
          "name": "latest_trades",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestTradesRequest",
          "response_type": "Result<LatestTradesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.latest_trades",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.latest_trades"
        },
        {
          "name": "snapshots",
          "kind": "mirror",
          "async": true,
          "request_type": "SnapshotsRequest",
          "response_type": "Result<SnapshotsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.snapshots",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.snapshots"
        },
        {
          "name": "snapshots_all",
          "kind": "convenience",
          "async": true,
          "request_type": "SnapshotsRequest",
          "response_type": "Result<SnapshotsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.snapshots_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.snapshots_all"
        },
        {
          "name": "snapshots_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "SnapshotsRequest",
          "response_type": "ResponseStream<Result<SnapshotsResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.snapshots_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.snapshots_stream"
        },
        {
          "name": "chain",
          "kind": "mirror",
          "async": true,
          "request_type": "ChainRequest",
          "response_type": "Result<ChainResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.chain",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.chain"
        },
        {
          "name": "chain_all",
          "kind": "convenience",
          "async": true,
          "request_type": "ChainRequest",
          "response_type": "Result<ChainResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.chain_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.chain_all"
        },
        {
          "name": "chain_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "ChainRequest",
          "response_type": "ResponseStream<Result<ChainResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.chain_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.chain_stream"
        },
        {
          "name": "exchange_codes",
          "kind": "mirror",
          "async": true,
          "request_type": null,
          "response_type": "Result<ExchangeCodesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.exchange_codes",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.exchange_codes"
        },
        {
          "name": "condition_codes",
          "kind": "mirror",
          "async": true,
          "request_type": "ConditionCodesRequest",
          "response_type": "Result<ConditionCodesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/options/struct.OptionsClient.html#method.condition_codes",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/options/struct.OptionsClient.html#method.condition_codes"
        }
      ],
      "types": {
        "requests": [
          "BarsRequest",
          "ChainRequest",
          "ConditionCodesRequest",
          "LatestQuotesRequest",
          "LatestTradesRequest",
          "SnapshotsRequest",
          "TradesRequest"
        ],
        "responses": [
          "BarsResponse",
          "ChainResponse",
          "ConditionCodesResponse",
          "ExchangeCodesResponse",
          "LatestQuotesResponse",
          "LatestTradesResponse",
          "SnapshotsResponse",
          "TradesResponse"
        ],
        "models": [
          "Bar",
          "Greeks",
          "Quote",
          "Snapshot",
          "Trade"
        ],
        "enums": [
          "ContractType",
          "OptionsFeed",
          "TickType",
          "TimeFrame"
        ],
        "shared": []
      },
      "convenience_methods": [
        "bars_all",
        "bars_stream",
        "trades_all",
        "trades_stream",
        "snapshots_all",
        "snapshots_stream",
        "chain_all",
        "chain_stream"
      ],
      "examples": [
        "examples/options_chain.rs"
      ],
      "tests": [
        "tests/live_options_condition_codes.rs",
        "tests/live_options_historical.rs",
        "tests/live_options_latest_metadata.rs",
        "tests/live_options_snapshots_chain.rs",
        "tests/mock_options_errors.rs"
      ],
      "benches": [
        "benches/options.rs"
      ]
    },
    {
      "slug": "crypto",
      "module": "alpaca_data::crypto",
      "title": "Crypto",
      "client_type": "CryptoClient",
      "summary": "Crypto market data endpoints. Mirror methods cover historical bars, quotes, trades, latest data, latest orderbooks, and snapshots. Convenience methods add:",
      "internal_only": false,
      "methods": [
        {
          "name": "bars",
          "kind": "mirror",
          "async": true,
          "request_type": "BarsRequest",
          "response_type": "Result<BarsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.bars",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.bars"
        },
        {
          "name": "bars_all",
          "kind": "convenience",
          "async": true,
          "request_type": "BarsRequest",
          "response_type": "Result<BarsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.bars_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.bars_all"
        },
        {
          "name": "bars_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "BarsRequest",
          "response_type": "ResponseStream<Result<BarsResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.bars_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.bars_stream"
        },
        {
          "name": "quotes",
          "kind": "mirror",
          "async": true,
          "request_type": "QuotesRequest",
          "response_type": "Result<QuotesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.quotes",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.quotes"
        },
        {
          "name": "quotes_all",
          "kind": "convenience",
          "async": true,
          "request_type": "QuotesRequest",
          "response_type": "Result<QuotesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.quotes_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.quotes_all"
        },
        {
          "name": "quotes_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "QuotesRequest",
          "response_type": "ResponseStream<Result<QuotesResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.quotes_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.quotes_stream"
        },
        {
          "name": "trades",
          "kind": "mirror",
          "async": true,
          "request_type": "TradesRequest",
          "response_type": "Result<TradesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.trades",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.trades"
        },
        {
          "name": "trades_all",
          "kind": "convenience",
          "async": true,
          "request_type": "TradesRequest",
          "response_type": "Result<TradesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.trades_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.trades_all"
        },
        {
          "name": "trades_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "TradesRequest",
          "response_type": "ResponseStream<Result<TradesResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.trades_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.trades_stream"
        },
        {
          "name": "latest_bars",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestBarsRequest",
          "response_type": "Result<LatestBarsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.latest_bars",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.latest_bars"
        },
        {
          "name": "latest_quotes",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestQuotesRequest",
          "response_type": "Result<LatestQuotesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.latest_quotes",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.latest_quotes"
        },
        {
          "name": "latest_trades",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestTradesRequest",
          "response_type": "Result<LatestTradesResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.latest_trades",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.latest_trades"
        },
        {
          "name": "latest_orderbooks",
          "kind": "mirror",
          "async": true,
          "request_type": "LatestOrderbooksRequest",
          "response_type": "Result<LatestOrderbooksResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.latest_orderbooks",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.latest_orderbooks"
        },
        {
          "name": "snapshots",
          "kind": "mirror",
          "async": true,
          "request_type": "SnapshotsRequest",
          "response_type": "Result<SnapshotsResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/crypto/struct.CryptoClient.html#method.snapshots",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/crypto/struct.CryptoClient.html#method.snapshots"
        }
      ],
      "types": {
        "requests": [
          "BarsRequest",
          "LatestBarsRequest",
          "LatestOrderbooksRequest",
          "LatestQuotesRequest",
          "LatestTradesRequest",
          "QuotesRequest",
          "SnapshotsRequest",
          "TradesRequest"
        ],
        "responses": [
          "BarsResponse",
          "LatestBarsResponse",
          "LatestOrderbooksResponse",
          "LatestQuotesResponse",
          "LatestTradesResponse",
          "QuotesResponse",
          "SnapshotsResponse",
          "TradesResponse"
        ],
        "models": [
          "Bar",
          "Orderbook",
          "OrderbookLevel",
          "Quote",
          "Snapshot",
          "Trade"
        ],
        "enums": [
          "Loc",
          "TimeFrame"
        ],
        "shared": []
      },
      "convenience_methods": [
        "bars_all",
        "bars_stream",
        "quotes_all",
        "quotes_stream",
        "trades_all",
        "trades_stream"
      ],
      "examples": [
        "examples/crypto_latest_quotes.rs"
      ],
      "tests": [
        "tests/live_crypto_historical.rs",
        "tests/live_crypto_latest.rs",
        "tests/live_crypto_latest_quotes_smoke.rs",
        "tests/live_crypto_loc_variants.rs",
        "tests/live_crypto_snapshots.rs",
        "tests/mock_crypto_errors.rs"
      ],
      "benches": [
        "benches/crypto.rs"
      ]
    },
    {
      "slug": "news",
      "module": "alpaca_data::news",
      "title": "News",
      "client_type": "NewsClient",
      "summary": "News endpoints. Mirror method:",
      "internal_only": false,
      "methods": [
        {
          "name": "list",
          "kind": "mirror",
          "async": true,
          "request_type": "ListRequest",
          "response_type": "Result<ListResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/news/struct.NewsClient.html#method.list",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/news/struct.NewsClient.html#method.list"
        },
        {
          "name": "list_all",
          "kind": "convenience",
          "async": true,
          "request_type": "ListRequest",
          "response_type": "Result<ListResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/news/struct.NewsClient.html#method.list_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/news/struct.NewsClient.html#method.list_all"
        },
        {
          "name": "list_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "ListRequest",
          "response_type": "ResponseStream<Result<ListResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/news/struct.NewsClient.html#method.list_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/news/struct.NewsClient.html#method.list_stream"
        }
      ],
      "types": {
        "requests": [
          "ListRequest"
        ],
        "responses": [
          "ListResponse"
        ],
        "models": [
          "NewsImage",
          "NewsItem"
        ],
        "enums": [
          "Sort"
        ],
        "shared": []
      },
      "convenience_methods": [
        "list_all",
        "list_stream"
      ],
      "examples": [
        "examples/news_list.rs"
      ],
      "tests": [
        "tests/live_news.rs",
        "tests/mock_news_corporate_actions_errors.rs"
      ],
      "benches": [
        "benches/news_corporate_actions.rs"
      ]
    },
    {
      "slug": "corporate-actions",
      "module": "alpaca_data::corporate_actions",
      "title": "Corporate Actions",
      "client_type": "CorporateActionsClient",
      "summary": "Corporate actions endpoints. Mirror method:",
      "internal_only": false,
      "methods": [
        {
          "name": "list",
          "kind": "mirror",
          "async": true,
          "request_type": "ListRequest",
          "response_type": "Result<ListResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/corporate_actions/struct.CorporateActionsClient.html#method.list",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/corporate_actions/struct.CorporateActionsClient.html#method.list"
        },
        {
          "name": "list_all",
          "kind": "convenience",
          "async": true,
          "request_type": "ListRequest",
          "response_type": "Result<ListResponse, Error>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/corporate_actions/struct.CorporateActionsClient.html#method.list_all",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/corporate_actions/struct.CorporateActionsClient.html#method.list_all"
        },
        {
          "name": "list_stream",
          "kind": "convenience",
          "async": false,
          "request_type": "ListRequest",
          "response_type": "ResponseStream<Result<ListResponse, Error>>",
          "docs_rs_url": "https://docs.rs/alpaca-data/latest/alpaca_data/corporate_actions/struct.CorporateActionsClient.html#method.list_stream",
          "local_rustdoc_url": "https://wmzhai.github.io/alpaca-data-rs/api/alpaca_data/corporate_actions/struct.CorporateActionsClient.html#method.list_stream"
        }
      ],
      "types": {
        "requests": [
          "CorporateActionType",
          "ListRequest"
        ],
        "responses": [
          "ListResponse"
        ],
        "models": [
          "CashDividend",
          "CashMerger",
          "CorporateActions",
          "ForwardSplit",
          "NameChange",
          "Redemption",
          "ReverseSplit",
          "RightsDistribution",
          "SpinOff",
          "StockAndCashMerger",
          "StockDividend",
          "StockMerger",
          "UnitSplit",
          "UnknownCorporateAction",
          "WorthlessRemoval"
        ],
        "enums": [
          "Sort"
        ],
        "shared": []
      },
      "convenience_methods": [
        "list_all",
        "list_stream"
      ],
      "examples": [
        "examples/corporate_actions_list.rs"
      ],
      "tests": [
        "tests/live_corporate_actions.rs",
        "tests/mock_news_corporate_actions_errors.rs"
      ],
      "benches": [
        "benches/news_corporate_actions.rs"
      ]
    },
    {
      "slug": "common",
      "module": "alpaca_data::common",
      "title": "Common",
      "client_type": null,
      "summary": "Shared query, response, enum, and timestamp primitives used across resource modules.",
      "internal_only": true,
      "methods": [],
      "types": {
        "requests": [],
        "responses": [],
        "models": [],
        "enums": [],
        "shared": [
          "Currency",
          "QueryWriter",
          "Sort",
          "Timestamp"
        ]
      },
      "convenience_methods": [],
      "examples": [],
      "tests": [
        "tests/public_api.rs"
      ],
      "benches": []
    },
    {
      "slug": "transport",
      "module": "alpaca_data::transport",
      "title": "Transport",
      "client_type": null,
      "summary": "Shared HTTP transport, endpoint routing, pagination, retry, and rate-limit infrastructure.",
      "internal_only": true,
      "methods": [],
      "types": {
        "requests": [],
        "responses": [],
        "models": [],
        "enums": [],
        "shared": [
          "Endpoint",
          "HttpClient",
          "ObservedResponseMeta",
          "ObserverHandle",
          "RateLimiter",
          "ResponseMeta",
          "RetryConfig",
          "RetryDecision"
        ]
      },
      "convenience_methods": [],
      "examples": [],
      "tests": [
        "tests/mock_transport_errors.rs"
      ],
      "benches": [
        "benches/shared_core.rs"
      ]
    }
  ]
}