-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproducts.json
More file actions
5595 lines (5595 loc) · 207 KB
/
products.json
File metadata and controls
5595 lines (5595 loc) · 207 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
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
{
"_embedded": {
"products": [
{
"emilId": "EIA-930-ER",
"name": "Daily Balancing Authority Operations Report",
"description": "Daily Balancing Authority Operations Report",
"status": "Active",
"reportTypeId": 13458,
"audience": "Public",
"generationFrequency": "Chron - Daily",
"securityClassification": "Public",
"lastUpdated": "2024-10-29",
"firstRun": "2015-02-08",
"eceii": "",
"channel": "Public,EWS",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "csv",
"ddlName": "",
"misDisplayDuration": 365,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "BINARY",
"downloadLimit": 1000,
"lastPostDatetime": "2026-01-02T04:27:02",
"bundle": 1,
"protocolRules": {
"EIA-930": "https://www.ercot.com/mp/data-products?protocolRules=EIA-930"
},
"artifacts": [],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/eia-930-er"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/eia-930-er"
},
"bundle": {
"href": "https://api.ercot.com/api/public-reports/bundle/eia-930-er"
}
}
},
{
"emilId": "NP1-301",
"name": "60-Day COP Adjustment Period Snapshot",
"description": "Complete Current Operating Plan (COP) data for each QSE snapshot on each hour; confidentiality expired 60 day data. Previously named Complete Current Operating Plan Data.",
"status": "Active",
"reportTypeId": 10038,
"audience": "Public",
"generationFrequency": "Chron - Daily",
"securityClassification": "Public",
"lastUpdated": "2024-09-17",
"firstRun": "2011-01-29",
"eceii": "",
"channel": "Public,EWS",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "zip,csv",
"ddlName": "",
"misDisplayDuration": 1462,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "DATA",
"downloadLimit": 500,
"lastPostDatetime": "2026-01-02T05:42:08",
"bundle": 1,
"protocolRules": {
"NP8.1(3)(i)": "https://www.ercot.com/mp/data-products?protocolRules=NP8.1(3)(i)",
"NP1.3.1.4(2)(b)": "https://www.ercot.com/mp/data-products?protocolRules=NP1.3.1.4(2)(b)"
},
"artifacts": [
{
"reportTypeId": 10038,
"displayName": "60-Day COP Adjustment Period Snapshot",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np1-301/60_cop_adj_period_snapshot"
}
}
}
],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/np1-301"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/np1-301"
},
"bundle": {
"href": "https://api.ercot.com/api/public-reports/bundle/np1-301"
}
}
},
{
"emilId": "NP1-346-ER",
"name": "Unplanned Resource Outages Report",
"description": "This report contains a snapshot of all unplanned Resource outages (i.e., Forced Outages and Maintenance Outages) and derates that were active in the Outage Scheduler at any time on the third day before the posting date of this report. The data for these outages is submitted by operators of generation assets and is used by ERCOT staff in the operation of the Texas power grid. This report does not contain Resource outages for generators that are no longer operational on the Texas power grid or have not begun operating on the Texas power grid. This report contains all outages for Resources that are required to enter outages in the ERCOT Outage Scheduler including Generation Resources in Private Use Networks, and Energy Storage Resources. Some smaller operational derates are not required to be reported.",
"status": "Active",
"reportTypeId": 22912,
"audience": "Public",
"generationFrequency": "Chron - Daily",
"securityClassification": "Public",
"lastUpdated": "2025-05-06",
"firstRun": "2022-12-08",
"eceii": "",
"channel": "Public,EWS",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "zip,xlsx",
"ddlName": "",
"misDisplayDuration": 31,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "BINARY",
"downloadLimit": 365,
"lastPostDatetime": "2026-01-02T05:00:54",
"bundle": 1,
"protocolRules": {
"NP3.1.4.8(1)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.1.4.8(1)",
"NP1.3.1.1(1)(c)(i)": "https://www.ercot.com/mp/data-products?protocolRules=NP1.3.1.1(1)(c)(i)",
"NP12.3(1)(b)": "https://www.ercot.com/mp/data-products?protocolRules=NP12.3(1)(b)",
"NP1.3.1.2(1)(i)": "https://www.ercot.com/mp/data-products?protocolRules=NP1.3.1.2(1)(i)"
},
"artifacts": [],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/np1-346-er"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/np1-346-er"
},
"bundle": {
"href": "https://api.ercot.com/api/public-reports/bundle/np1-346-er"
}
}
},
{
"emilId": "NP3-108",
"name": "Monthly ERCOT Demand Response from Load Resources",
"description": "The MW of Demand Response that is participating in the past month in Emergency Response Service (ERS), Ancillary Service as a Load Resource, or pilot project permitted by subsection (k) of P.U.C. Subst. R. 25.361, Electric Reliability Council of Texas (ERCOT), by Load Zone.",
"status": "Active",
"reportTypeId": 13242,
"audience": "Public",
"generationFrequency": "Chron - Monthly",
"securityClassification": "Public",
"lastUpdated": "2025-10-28",
"firstRun": "2014-10-28",
"eceii": "",
"channel": "Public,EWS",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "xlsx",
"ddlName": "",
"misDisplayDuration": 365,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "BINARY",
"downloadLimit": 365,
"lastPostDatetime": "2025-12-04T08:22:42",
"bundle": 0,
"protocolRules": {
"NP3.10.7.2.1(1)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.10.7.2.1(1)"
},
"artifacts": [],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/np3-108"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/np3-108"
}
}
},
{
"emilId": "NP3-233-CD",
"name": "Hourly Resource Outage Capacity",
"description": "This report includes all approved and accepted Planned, Forced and Maintenance Resource outages EXCEPT Resource outages for retirement of old equipment, seasonal mothballed (during the outaged season), and mothballed. The outage capacity in this report reflects aggregated ACTIVE resource outaged capacity by Load Zone sourced from the Outage Scheduler (OS) for the next 168 hours and is published every hour. Columns \u2018C\u2019 - \u2018F\u2019 consists of the aggregated outaged capacity of ALL the ACTIVE resource outages by Load Zone in the OS for each hour excluding the outages stated above, IRR resource outages, and new equipment outages. Columns \u2018G\u2019 - \u2018J\u2019 consists of the aggregated outaged capacity of ALL the ACTIVE IRR resource outages by Load Zone in the OS for each hour excluding the outages stated above, outages in columns \u2018C\u2019 - \u2018F\u2019 and new equipment outages. Columns \u2018K\u2019 - \u2018N\u2019 consists of the aggregated outaged capacity of ALL the ACTIVE New Equipment Energization resource outages by Load Zone. Note that this report contains OS data only and does not look at telemetry. It includes both entire resource outage and de-rates.",
"status": "Active",
"reportTypeId": 13103,
"audience": "Public",
"generationFrequency": "Chron - Hourly",
"securityClassification": "Public",
"lastUpdated": "2024-07-10",
"firstRun": "2013-10-20",
"eceii": "",
"channel": "Public,EWS,Data Portal",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "Current Day Reports XSD",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "zip,csv,xml",
"ddlName": "",
"misDisplayDuration": 31,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "DATA",
"downloadLimit": 1000,
"lastPostDatetime": "2026-01-02T18:00:49",
"bundle": 1,
"protocolRules": {
"NP3.2.3(1)(b)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.3(1)(b)"
},
"artifacts": [
{
"reportTypeId": 13103,
"displayName": "Hourly Resource Outage Capacity",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-233-cd/hourly_res_outage_cap"
}
}
}
],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/np3-233-cd"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/np3-233-cd"
},
"bundle": {
"href": "https://api.ercot.com/api/public-reports/bundle/np3-233-cd"
}
}
},
{
"emilId": "NP3-565-CD",
"name": "Seven-Day Load Forecast by Model and Weather Zone",
"description": "Hourly system-wide Mid-Term Load Forecasts (MTLFs) for all forecast models with an indicator for which forecast was in use by ERCOT at the time of publication for current day plus the next 7.",
"status": "Active",
"reportTypeId": 14837,
"audience": "Public",
"generationFrequency": "Chron - Hourly",
"securityClassification": "Public",
"lastUpdated": "2024-07-10",
"firstRun": "2017-06-28",
"eceii": "",
"channel": "Public,EWS,Data Portal",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "Current Day Reports XSD",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "zip,csv,xml",
"ddlName": "",
"misDisplayDuration": 7,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "DATA",
"downloadLimit": 1000,
"lastPostDatetime": "2026-01-02T17:30:00",
"bundle": 1,
"protocolRules": {
"NP6.3.2(3)(b)": "https://www.ercot.com/mp/data-products?protocolRules=NP6.3.2(3)(b)"
},
"artifacts": [
{
"reportTypeId": 14837,
"displayName": "Seven-Day Load Forecast by Model and Weather Zone",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-565-cd/lf_by_model_weather_zone"
}
}
}
],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/np3-565-cd"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/np3-565-cd"
},
"bundle": {
"href": "https://api.ercot.com/api/public-reports/bundle/np3-565-cd"
}
}
},
{
"emilId": "NP3-566-CD",
"name": "Seven-Day Load Forecast by Model and Study Area",
"description": "Forecasted hourly demands by Study Area, for the current day plus the next seven days.",
"status": "Active",
"reportTypeId": 15953,
"audience": "Public",
"generationFrequency": "Chron - Hourly",
"securityClassification": "Public",
"lastUpdated": "2024-07-10",
"firstRun": "2019-02-06",
"eceii": "",
"channel": "Public,EWS,Data Portal",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "Current Day Reports XSD",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "zip,csv,xml",
"ddlName": "",
"misDisplayDuration": 7,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "DATA",
"downloadLimit": 1000,
"lastPostDatetime": "2026-01-02T17:30:00",
"bundle": 1,
"protocolRules": {
"NP3.12.2": "https://www.ercot.com/mp/data-products?protocolRules=NP3.12.2",
"NP3.12.3": "https://www.ercot.com/mp/data-products?protocolRules=NP3.12.3",
"NP4.2.4.1(1)(b)": "https://www.ercot.com/mp/data-products?protocolRules=NP4.2.4.1(1)(b)"
},
"artifacts": [
{
"reportTypeId": 15953,
"displayName": "Seven-Day Load Forecast by Model and Study Area",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-566-cd/lf_by_model_study_area"
}
}
}
],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/np3-566-cd"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/np3-566-cd"
},
"bundle": {
"href": "https://api.ercot.com/api/public-reports/bundle/np3-566-cd"
}
}
},
{
"emilId": "NP3-763-CD",
"name": "Short-Term System Adequacy Report",
"description": "The available On-Line Resource capacity for Generation Resources and the available capacity for Load Resources, for each hour of the current day and six days forward.",
"status": "Active",
"reportTypeId": 12315,
"audience": "Public",
"generationFrequency": "Chron - Hourly",
"securityClassification": "Public",
"lastUpdated": "2025-10-24",
"firstRun": "2010-11-23",
"eceii": "",
"channel": "Public,EWS",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "Current Day Reports XSD",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "zip,csv,xml",
"ddlName": "",
"misDisplayDuration": 31,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "DATA",
"downloadLimit": 50,
"lastPostDatetime": "2026-01-02T18:00:40",
"bundle": 1,
"protocolRules": {
"NP3.2.3(1)(a)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.3(1)(a)",
"NP3.2.3(1)(c)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.3(1)(c)",
"PUC Substantive Rule \u00a725.506": "https://www.ercot.com/mp/data-products?protocolRules=PUC Substantive Rule \u00a725.506",
"NP3.2.3(1)(i)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.3(1)(i)",
"NP3.2.3(1)(j)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.3(1)(j)",
"NP3.2.3(1)(e)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.3(1)(e)"
},
"artifacts": [
{
"reportTypeId": 12315,
"displayName": "Short-Term System Adequacy",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-763-cd/st_sys_adequacy"
}
}
}
],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/np3-763-cd"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/np3-763-cd"
},
"bundle": {
"href": "https://api.ercot.com/api/public-reports/bundle/np3-763-cd"
}
}
},
{
"emilId": "NP3-764-CD",
"name": "Hourly RUC Online In SCED Offline In COP Report",
"description": "An hourly RUC report containing the sum of the HSLs of Generation Resources that are online in the most recent SCED execution and indicated as offline in its COP, for each hour of the RUC study period. Online SCED statuses are ONRUC, ON, ONOS, ONTEST, ONEMR, ONOPTOUT, STARTUP, ONSC, ONHOLD, ONL, and OFFQS. Offline COP statuses are OFF, OUT, and EMR.",
"status": "Active",
"reportTypeId": 15753,
"audience": "Public",
"generationFrequency": "Chron - Hourly",
"securityClassification": "Public",
"lastUpdated": "2025-08-14",
"firstRun": "2018-10-24",
"eceii": "",
"channel": "Public,EWS",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "Current Day Reports XSD",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "zip,csv,xml",
"ddlName": "",
"misDisplayDuration": 7,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "DATA",
"downloadLimit": 50,
"lastPostDatetime": "2026-01-02T17:38:51",
"bundle": 1,
"protocolRules": {
"NP3.2.3(1)(g)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.3(1)(g)"
},
"artifacts": [
{
"reportTypeId": 15753,
"displayName": "Hourly RUC Online in SCED Offline in COP Report",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-764-cd/hrly_ruc_online_sced_offline_cop"
}
}
}
],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/np3-764-cd"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/np3-764-cd"
},
"bundle": {
"href": "https://api.ercot.com/api/public-reports/bundle/np3-764-cd"
}
}
},
{
"emilId": "NP3-765-CD",
"name": "Approved DC Tie Schedules",
"description": "For each Direct Current Tie (DC Tie), the sum of any ERCOT-approved DC Tie Schedules for each 15-minute interval for the first seven days. The sum shall be displayed as an absolute value and classified as a net import or net export.",
"status": "Active",
"reportTypeId": 24347,
"audience": "Public",
"generationFrequency": "Chron - Hourly",
"securityClassification": "Public",
"lastUpdated": "2024-08-15",
"firstRun": "2024-06-27",
"eceii": "",
"channel": "Public,EWS",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "Current Day Reports XSD",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "csv,xml,zip",
"ddlName": "",
"misDisplayDuration": 7,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "DATA",
"downloadLimit": 500,
"lastPostDatetime": "2026-01-02T18:05:00",
"bundle": 1,
"protocolRules": {
"NP3.2.3(1)(h)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.3(1)(h)"
},
"artifacts": [
{
"reportTypeId": 24347,
"displayName": "Approved DC Tie Schedules",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-765-cd/approved_dctie_schedules"
}
}
}
],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/np3-765-cd"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/np3-765-cd"
},
"bundle": {
"href": "https://api.ercot.com/api/public-reports/bundle/np3-765-cd"
}
}
},
{
"emilId": "NP3-906-EX",
"name": "2-Day SCED Ancillary Service Disclosure",
"description": "This report will contain all 2-day disclosure data related to Ancillary Services Offers for the Real-Time Market (RTM).",
"status": "Active",
"reportTypeId": 25814,
"audience": "Public",
"generationFrequency": "Chron - Daily",
"securityClassification": "Public",
"lastUpdated": "2025-08-04",
"firstRun": "2025-12-05",
"eceii": "",
"channel": "Public,EWS",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "zip,csv",
"ddlName": "",
"misDisplayDuration": 31,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "DATA",
"downloadLimit": 1000,
"lastPostDatetime": "2026-01-02T03:12:02",
"bundle": 0,
"protocolRules": {
"NP3.2.5(1)(i)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.5(1)(i)"
},
"artifacts": [
{
"reportTypeId": 25814,
"displayName": "2-Day Aggregate SCED Ancillary Offer Curves NSPIN",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-906-ex/2day_agg_sced_as_offers_nspin"
}
}
},
{
"reportTypeId": 25814,
"displayName": "2-Day Aggregate SCED Ancillary Offer Curves RRSPFR",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-906-ex/2day_agg_sced_as_offers_rrspfr"
}
}
},
{
"reportTypeId": 25814,
"displayName": "2-Day Aggregate SCED Ancillary Offer Curves REGUP",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-906-ex/2day_agg_sced_as_offers_regup"
}
}
},
{
"reportTypeId": 25814,
"displayName": "2-Day Aggregate SCED Ancillary Offer Curves REGDN",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-906-ex/2day_agg_sced_as_offers_regdn"
}
}
},
{
"reportTypeId": 25814,
"displayName": "2-Day Aggregate SCED Ancillary Offer Curves ECRSS",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-906-ex/2day_agg_sced_as_offers_ecrss"
}
}
},
{
"reportTypeId": 25814,
"displayName": "2-Day Aggregate SCED Ancillary Offer Curves NSPNM",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-906-ex/2day_agg_sced_as_offers_nspnm"
}
}
},
{
"reportTypeId": 25814,
"displayName": "2-Day Aggregate SCED Ancillary Offer Curves RRSUFR",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-906-ex/2day_agg_sced_as_offers_rrsufr"
}
}
},
{
"reportTypeId": 25814,
"displayName": "2-Day Aggregate SCED Ancillary Offer Curves ECRSM",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-906-ex/2day_agg_sced_as_offers_ecrsm"
}
}
},
{
"reportTypeId": 25814,
"displayName": "2-Day Aggregate SCED Ancillary Offer Curves RRSFFR",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-906-ex/2day_agg_sced_as_offers_rrsffr"
}
}
}
],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/np3-906-ex"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/np3-906-ex"
}
}
},
{
"emilId": "NP3-907-EX",
"name": "2-Day DAM Energy Curves",
"description": "This report contains 2-Day aggregate energy demand and supply curve disclosure data for the Day-Ahead Market (DAM). The following file types are included in this report: Energy Demand Curves, Energy Supply Curves, and Minimum Energy Supply Curves, including by Disclosure Area.",
"status": "Active",
"reportTypeId": 25813,
"audience": "Public",
"generationFrequency": "Chron - Daily",
"securityClassification": "Public",
"lastUpdated": "2025-09-25",
"firstRun": "2025-12-05",
"eceii": "",
"channel": "Public,EWS",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "zip,csv",
"ddlName": "",
"misDisplayDuration": 31,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "DATA",
"downloadLimit": 50,
"lastPostDatetime": "2026-01-02T03:27:03",
"bundle": 0,
"protocolRules": {
"PUCT Substantive Rule \u00a725.506": "https://www.ercot.com/mp/data-products?protocolRules=PUCT Substantive Rule \u00a725.506",
"NP3.2.5(3)(a)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.5(3)(a)",
"NP3.2.5(3)(b)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.5(3)(b)",
"NP3.2.5(3)(c)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.5(3)(c)"
},
"artifacts": [
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Energy Supply Curves Houston",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_esc_houston"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Energy Demand Curves Houston",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_edc_houston"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Energy Demand Curves South",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_edc_south"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Energy Demand Curves West",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_edc_west"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Minimum Energy Supply Curves Houston",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_min_esc_houston"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Energy Demand Curves North",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_edc_north"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Energy Supply Curves",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_esc"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Energy Supply Curves North",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_esc_north"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Minimum Energy Supply Curves North",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_min_esc_north"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Minimum Energy Supply Curves",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_min_esc"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Energy Supply Curves West",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_esc_west"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Energy Demand Curves",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_edc"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Energy Supply Curves South",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_esc_south"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Minimum Energy Supply Curves West",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_min_esc_west"
}
}
},
{
"reportTypeId": 25813,
"displayName": "2-Day Aggregate Minimum Energy Supply Curves South",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex/2d_agg_min_esc_south"
}
}
}
],
"_links": {
"self": {
"href": "https://api.ercot.com/api/public-reports/np3-907-ex"
},
"parent": {
"href": "https://api.ercot.com/api/public-reports"
},
"archive": {
"href": "https://api.ercot.com/api/public-reports/archive/np3-907-ex"
}
}
},
{
"emilId": "NP3-908-ER",
"name": "2 Day SCED Energy Curves",
"description": "This report contains 2-Day aggregate energy demand and supply curve disclosure data for SCED. The following file types are included in this report: Energy Demand Curves for CLRs including by Disclosure Area, Supply Curve for ESR, Photovoltaic, Wind, and Non-Intermittent Renewable Resources, including by Disclosure Area.",
"status": "Active",
"reportTypeId": 13054,
"audience": "Public",
"generationFrequency": "Chron - Daily",
"securityClassification": "Public",
"lastUpdated": "2025-11-11",
"firstRun": "2011-08-28",
"eceii": "",
"channel": "Public,EWS,Data Portal",
"userGuide": null,
"postingType": "Report",
"market": "Nodal",
"extractSubscriber": "",
"xsdName": "",
"misPostingLocation": "",
"certificateRole": "",
"fileType": "zip,csv",
"ddlName": "",
"misDisplayDuration": 31,
"archiveDuration": 2555,
"notificationType": "",
"contentType": "DATA",
"downloadLimit": 50,
"lastPostDatetime": "2026-01-02T03:42:02",
"bundle": 1,
"protocolRules": {
"NP3.2.5(1)(h)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.5(1)(h)",
"PUCT Substantive Rule \u00a725.506": "https://www.ercot.com/mp/data-products?protocolRules=PUCT Substantive Rule \u00a725.506",
"NP3.2.5(1)(a)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.5(1)(a)",
"NP3.2.5(1)(b)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.5(1)(b)",
"NP3.2.5(1)(c)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.5(1)(c)",
"NP3.2.5(1)(d)": "https://www.ercot.com/mp/data-products?protocolRules=NP3.2.5(1)(d)"
},
"artifacts": [
{
"reportTypeId": 13054,
"displayName": "2-Day Aggregate Supply Curve for Photovoltaic Resources Houston",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-908-er/2d_agg_esc_pvgr_houston"
}
}
},
{
"reportTypeId": 13054,
"displayName": "2-Day Aggregate Supply Curve for ESR Resources West",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-908-er/2d_agg_esc_esr_west"
}
}
},
{
"reportTypeId": 13054,
"displayName": "2-Day Aggregate Supply Curve for ESR Resources Houston",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-908-er/2d_agg_esc_esr_houston"
}
}
},
{
"reportTypeId": 13054,
"displayName": "2-Day Aggregated Energy Demand Curves CLR North",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-908-er/2d_agg_edc_clr_north"
}
}
},
{
"reportTypeId": 13054,
"displayName": "2-Day Aggregate Supply Curve for Wind Resources",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-908-er/2d_agg_esc_wind"
}
}
},
{
"reportTypeId": 13054,
"displayName": "2-Day Aggregate Supply Curve for Non-Intermittent Renewable Resources North",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-908-er/2d_agg_esc_nonirr_north"
}
}
},
{
"reportTypeId": 13054,
"displayName": "2-Day Aggregate Supply Curves for Non-Intermittent Renewable Resources",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-908-er/2d_agg_esc_nonirr"
}
}
},
{
"reportTypeId": 13054,
"displayName": "2-Day Aggregated Energy Demand Curves CLR Houston",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-908-er/2d_agg_edc_clr_houston"
}
}
},
{
"reportTypeId": 13054,
"displayName": "2-Day Aggregated Energy Demand Curves CLR West",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-908-er/2d_agg_edc_clr_west"
}
}
},
{
"reportTypeId": 13054,
"displayName": "2-Day Aggregate Supply Curve for Non-Intermittent Renewable Resources South",
"_links": {
"endpoint": {
"href": "https://api.ercot.com/api/public-reports/np3-908-er/2d_agg_esc_nonirr_south"
}
}
},