-
Notifications
You must be signed in to change notification settings - Fork 15.9k
Expand file tree
/
Copy pathroutes.json
More file actions
8600 lines (8600 loc) · 444 KB
/
Copy pathroutes.json
File metadata and controls
8600 lines (8600 loc) · 444 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
{
"version": 1,
"base": "/",
"knownRoutes": [
"/",
"/1.1.1.1",
"/1.1.1.1/404",
"/1.1.1.1/additional-options",
"/1.1.1.1/additional-options/dns-in-google-sheets",
"/1.1.1.1/additional-options/dns-over-discord",
"/1.1.1.1/additional-options/dns-over-tor",
"/1.1.1.1/check",
"/1.1.1.1/encryption",
"/1.1.1.1/encryption/dns-over-https",
"/1.1.1.1/encryption/dns-over-https/dns-over-https-client",
"/1.1.1.1/encryption/dns-over-https/encrypted-dns-browsers",
"/1.1.1.1/encryption/dns-over-https/make-api-requests",
"/1.1.1.1/encryption/dns-over-https/make-api-requests/dns-json",
"/1.1.1.1/encryption/dns-over-https/make-api-requests/dns-wireformat",
"/1.1.1.1/encryption/dns-over-tls",
"/1.1.1.1/encryption/dnskey",
"/1.1.1.1/encryption/oblivious-dns-over-https",
"/1.1.1.1/faq",
"/1.1.1.1/infrastructure",
"/1.1.1.1/infrastructure/extended-dns-error-codes",
"/1.1.1.1/infrastructure/ipv6-networks",
"/1.1.1.1/infrastructure/network-operators",
"/1.1.1.1/infrastructure/sla-and-support",
"/1.1.1.1/ip-addresses",
"/1.1.1.1/privacy",
"/1.1.1.1/privacy/cloudflare-resolver-firefox",
"/1.1.1.1/privacy/public-dns-resolver",
"/1.1.1.1/setup",
"/1.1.1.1/setup/android",
"/1.1.1.1/setup/azure",
"/1.1.1.1/setup/gaming-consoles",
"/1.1.1.1/setup/google-cloud",
"/1.1.1.1/setup/ios",
"/1.1.1.1/setup/linux",
"/1.1.1.1/setup/macos",
"/1.1.1.1/setup/router",
"/1.1.1.1/setup/windows",
"/1.1.1.1/terms-of-use",
"/1.1.1.1/troubleshooting",
"/1.1.1.1/upstream-resolution",
"/404",
"/agent-lee",
"/agent-lee/404",
"/agent-memory",
"/agent-memory/404",
"/agent-memory/api",
"/agent-memory/api/http-api",
"/agent-memory/api/workers-api",
"/agent-memory/concepts",
"/agent-memory/concepts/how-agent-memory-works",
"/agent-memory/concepts/namespaces-profiles",
"/agent-memory/get-started",
"/agent-memory/platform",
"/agent-memory/platform/limits",
"/agent-memory/platform/pricing",
"/agent-setup",
"/agent-setup/claude-code",
"/agent-setup/codex",
"/agent-setup/cursor",
"/agent-setup/github-copilot",
"/agent-setup/opencode",
"/agent-setup/windsurf",
"/agents",
"/agents/404",
"/agents/communication-channels",
"/agents/communication-channels/chat",
"/agents/communication-channels/chat/autonomous-responses",
"/agents/communication-channels/chat/chat-agents",
"/agents/communication-channels/chat/client-sdk",
"/agents/communication-channels/email",
"/agents/communication-channels/slack",
"/agents/communication-channels/voice",
"/agents/communication-channels/webhooks",
"/agents/communication-channels/webhooks/push-notifications",
"/agents/concepts",
"/agents/concepts/agentic-patterns",
"/agents/concepts/agentic-patterns/human-in-the-loop",
"/agents/concepts/agentic-patterns/long-running-agents",
"/agents/concepts/calling-llms",
"/agents/concepts/conversation-state-and-memory",
"/agents/concepts/tools",
"/agents/concepts/what-are-agents",
"/agents/concepts/workflows",
"/agents/examples",
"/agents/examples/browser-agent",
"/agents/examples/chat-agent",
"/agents/examples/email-agent",
"/agents/examples/slack-agent",
"/agents/examples/voice-agent",
"/agents/getting-started",
"/agents/getting-started/add-to-existing-project",
"/agents/getting-started/quick-start",
"/agents/getting-started/testing-your-agent",
"/agents/harnesses",
"/agents/harnesses/think",
"/agents/harnesses/think/actions",
"/agents/harnesses/think/channels",
"/agents/harnesses/think/client-tools",
"/agents/harnesses/think/configuration",
"/agents/harnesses/think/getting-started",
"/agents/harnesses/think/lifecycle-hooks",
"/agents/harnesses/think/messengers",
"/agents/harnesses/think/programmatic-submissions",
"/agents/harnesses/think/recovery",
"/agents/harnesses/think/scheduled-tasks",
"/agents/harnesses/think/sub-agents",
"/agents/harnesses/think/tools",
"/agents/harnesses/think/workflows",
"/agents/model-context-protocol",
"/agents/model-context-protocol/apis",
"/agents/model-context-protocol/apis/agent-api",
"/agents/model-context-protocol/apis/client-api",
"/agents/model-context-protocol/apis/handler-api",
"/agents/model-context-protocol/cloudflare",
"/agents/model-context-protocol/cloudflare/mcp-portal",
"/agents/model-context-protocol/cloudflare/servers-for-cloudflare",
"/agents/model-context-protocol/cloudflare/servers-for-cloudflare/community-mcp-server",
"/agents/model-context-protocol/codemode",
"/agents/model-context-protocol/guides",
"/agents/model-context-protocol/guides/build-codemode-mcp-server",
"/agents/model-context-protocol/guides/build-codemode-openapi-mcp-server",
"/agents/model-context-protocol/guides/build-mcp-client",
"/agents/model-context-protocol/guides/connect-mcp-client",
"/agents/model-context-protocol/guides/oauth-mcp-client",
"/agents/model-context-protocol/guides/remote-mcp-server",
"/agents/model-context-protocol/guides/securing-mcp-server",
"/agents/model-context-protocol/guides/test-remote-mcp-server",
"/agents/model-context-protocol/protocol",
"/agents/model-context-protocol/protocol/authorization",
"/agents/model-context-protocol/protocol/governance",
"/agents/model-context-protocol/protocol/tools",
"/agents/model-context-protocol/protocol/transport",
"/agents/platform",
"/agents/platform/limits",
"/agents/runtime",
"/agents/runtime/agents-api",
"/agents/runtime/communication",
"/agents/runtime/communication/chat-sdk",
"/agents/runtime/communication/http-sse",
"/agents/runtime/communication/protocol-messages",
"/agents/runtime/communication/readonly-connections",
"/agents/runtime/communication/routing",
"/agents/runtime/communication/websockets",
"/agents/runtime/execution",
"/agents/runtime/execution/agent-skills",
"/agents/runtime/execution/agent-tools",
"/agents/runtime/execution/durable-execution",
"/agents/runtime/execution/queue-tasks",
"/agents/runtime/execution/retries",
"/agents/runtime/execution/run-workflows",
"/agents/runtime/execution/schedule-tasks",
"/agents/runtime/execution/sub-agents",
"/agents/runtime/lifecycle",
"/agents/runtime/lifecycle/agent-class",
"/agents/runtime/lifecycle/callable-methods",
"/agents/runtime/lifecycle/get-current-agent",
"/agents/runtime/lifecycle/sessions",
"/agents/runtime/lifecycle/state",
"/agents/runtime/operations",
"/agents/runtime/operations/configuration",
"/agents/runtime/operations/cross-domain-authentication",
"/agents/runtime/operations/observability",
"/agents/runtime/operations/using-ai-models",
"/agents/tools",
"/agents/tools/ai-search",
"/agents/tools/browser",
"/agents/tools/codemode",
"/agents/tools/codemode/ai-sdk",
"/agents/tools/codemode/api-reference",
"/agents/tools/codemode/browser",
"/agents/tools/codemode/durable-runtime",
"/agents/tools/codemode/how-it-works",
"/agents/tools/codemode/mcp",
"/agents/tools/codemode/openapi",
"/agents/tools/codemode/tanstack-ai",
"/agents/tools/mcp",
"/agents/tools/payments",
"/agents/tools/payments/mpp",
"/agents/tools/payments/mpp-charge-for-http-content",
"/agents/tools/payments/x402",
"/agents/tools/payments/x402/charge-for-http-content",
"/agents/tools/payments/x402/charge-for-mcp-tools",
"/agents/tools/payments/x402/pay-from-agents-sdk",
"/agents/tools/payments/x402/pay-with-tool-plugins",
"/agents/tools/sandbox",
"/ai",
"/ai-crawl-control",
"/ai-crawl-control/404",
"/ai-crawl-control/changelog",
"/ai-crawl-control/configuration",
"/ai-crawl-control/configuration/ai-crawl-control-with-bots",
"/ai-crawl-control/configuration/ai-crawl-control-with-transform-rules",
"/ai-crawl-control/configuration/ai-crawl-control-with-waf",
"/ai-crawl-control/features",
"/ai-crawl-control/features/analyze-ai-traffic",
"/ai-crawl-control/features/manage-ai-crawlers",
"/ai-crawl-control/features/pay-per-crawl",
"/ai-crawl-control/features/pay-per-crawl/faq",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-ai-owner",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-ai-owner/connect-to-stripe",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-ai-owner/crawl-pages",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-ai-owner/discover-payable-content",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-ai-owner/error-codes",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-ai-owner/set-up-cloudflare-account",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-ai-owner/verify-ai-crawler",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-site-owner",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-site-owner/advanced-configuration",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-site-owner/enable-in-account-settings",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-site-owner/manage-payouts",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-site-owner/monitor-activity",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-site-owner/select-crawlers-to-charge",
"/ai-crawl-control/features/pay-per-crawl/use-pay-per-crawl-as-site-owner/set-a-pay-per-crawl-price",
"/ai-crawl-control/features/pay-per-crawl/what-is-pay-per-crawl",
"/ai-crawl-control/features/track-robots-txt",
"/ai-crawl-control/get-started",
"/ai-crawl-control/reference",
"/ai-crawl-control/reference/bots",
"/ai-crawl-control/reference/glossary",
"/ai-crawl-control/reference/graphql-api",
"/ai-crawl-control/reference/redirects-for-ai-training",
"/ai-crawl-control/reference/worker-templates",
"/ai-gateway",
"/ai-gateway/404",
"/ai-gateway/api-reference",
"/ai-gateway/changelog",
"/ai-gateway/configuration",
"/ai-gateway/configuration/authentication",
"/ai-gateway/configuration/bring-your-own-keys",
"/ai-gateway/configuration/custom-costs",
"/ai-gateway/configuration/custom-providers",
"/ai-gateway/configuration/fallbacks",
"/ai-gateway/configuration/manage-gateway",
"/ai-gateway/configuration/request-handling",
"/ai-gateway/demos",
"/ai-gateway/evaluations",
"/ai-gateway/evaluations/add-human-feedback",
"/ai-gateway/evaluations/add-human-feedback-api",
"/ai-gateway/evaluations/add-human-feedback-bindings",
"/ai-gateway/evaluations/set-up-evaluations",
"/ai-gateway/features",
"/ai-gateway/features/caching",
"/ai-gateway/features/dlp",
"/ai-gateway/features/dlp/set-up-dlp",
"/ai-gateway/features/dynamic-routing",
"/ai-gateway/features/dynamic-routing/json-configuration",
"/ai-gateway/features/dynamic-routing/usage",
"/ai-gateway/features/guardrails",
"/ai-gateway/features/guardrails/set-up-guardrail",
"/ai-gateway/features/guardrails/supported-model-types",
"/ai-gateway/features/guardrails/usage-considerations",
"/ai-gateway/features/rate-limiting",
"/ai-gateway/features/spend-limits",
"/ai-gateway/features/unified-billing",
"/ai-gateway/get-started",
"/ai-gateway/glossary",
"/ai-gateway/integrations",
"/ai-gateway/integrations/agents",
"/ai-gateway/integrations/aig-workers-ai-binding",
"/ai-gateway/integrations/coding-agents",
"/ai-gateway/integrations/coding-agents/claude-code",
"/ai-gateway/integrations/coding-agents/github-copilot-cli",
"/ai-gateway/integrations/coding-agents/openai-codex",
"/ai-gateway/integrations/coding-agents/pi",
"/ai-gateway/integrations/vercel-ai-sdk",
"/ai-gateway/mcp-server",
"/ai-gateway/models",
"/ai-gateway/observability",
"/ai-gateway/observability/analytics",
"/ai-gateway/observability/costs",
"/ai-gateway/observability/custom-metadata",
"/ai-gateway/observability/logging",
"/ai-gateway/observability/logging/logpush",
"/ai-gateway/observability/otel-integration",
"/ai-gateway/reference",
"/ai-gateway/reference/audit-logs",
"/ai-gateway/reference/limits",
"/ai-gateway/reference/pricing",
"/ai-gateway/reference/troubleshooting",
"/ai-gateway/tutorials",
"/ai-gateway/tutorials/create-first-aig-workers",
"/ai-gateway/tutorials/pruna-p-video",
"/ai-gateway/usage",
"/ai-gateway/usage/chat-completion",
"/ai-gateway/usage/providers",
"/ai-gateway/usage/providers/anthropic",
"/ai-gateway/usage/providers/azureopenai",
"/ai-gateway/usage/providers/baseten",
"/ai-gateway/usage/providers/bedrock",
"/ai-gateway/usage/providers/cartesia",
"/ai-gateway/usage/providers/cerebras",
"/ai-gateway/usage/providers/cohere",
"/ai-gateway/usage/providers/deepgram",
"/ai-gateway/usage/providers/deepseek",
"/ai-gateway/usage/providers/elevenlabs",
"/ai-gateway/usage/providers/fal",
"/ai-gateway/usage/providers/google-ai-studio",
"/ai-gateway/usage/providers/grok",
"/ai-gateway/usage/providers/groq",
"/ai-gateway/usage/providers/huggingface",
"/ai-gateway/usage/providers/ideogram",
"/ai-gateway/usage/providers/mistral",
"/ai-gateway/usage/providers/openai",
"/ai-gateway/usage/providers/openrouter",
"/ai-gateway/usage/providers/parallel",
"/ai-gateway/usage/providers/perplexity",
"/ai-gateway/usage/providers/replicate",
"/ai-gateway/usage/providers/vertex",
"/ai-gateway/usage/providers/workersai",
"/ai-gateway/usage/rest-api",
"/ai-gateway/usage/universal",
"/ai-gateway/usage/web-search",
"/ai-gateway/usage/websockets-api",
"/ai-gateway/usage/websockets-api/non-realtime-api",
"/ai-gateway/usage/websockets-api/realtime-api",
"/ai-gateway/usage/worker-binding-methods",
"/ai-search",
"/ai-search/404",
"/ai-search/ai-search-api",
"/ai-search/api",
"/ai-search/api/instances",
"/ai-search/api/instances/rest-api",
"/ai-search/api/instances/workers-binding",
"/ai-search/api/items",
"/ai-search/api/items/rest-api",
"/ai-search/api/items/workers-binding",
"/ai-search/api/migration",
"/ai-search/api/migration/autorag-filter-format",
"/ai-search/api/migration/rest-api",
"/ai-search/api/migration/workers-binding",
"/ai-search/api/migration/workers-binding-legacy",
"/ai-search/api/search",
"/ai-search/api/search/mcp",
"/ai-search/api/search/public-endpoint",
"/ai-search/api/search/rest-api",
"/ai-search/api/search/workers-binding",
"/ai-search/concepts",
"/ai-search/concepts/how-ai-search-works",
"/ai-search/concepts/namespaces",
"/ai-search/concepts/search-modes",
"/ai-search/configuration",
"/ai-search/configuration/data-source",
"/ai-search/configuration/data-source/built-in-storage",
"/ai-search/configuration/data-source/r2",
"/ai-search/configuration/data-source/website",
"/ai-search/configuration/indexing",
"/ai-search/configuration/indexing/chunking",
"/ai-search/configuration/indexing/hybrid-search",
"/ai-search/configuration/indexing/keyword-search",
"/ai-search/configuration/indexing/metadata",
"/ai-search/configuration/indexing/path-filtering",
"/ai-search/configuration/indexing/service-api-token",
"/ai-search/configuration/indexing/syncing",
"/ai-search/configuration/indexing/vector-search",
"/ai-search/configuration/models",
"/ai-search/configuration/models/supported-models",
"/ai-search/configuration/retrieval",
"/ai-search/configuration/retrieval/boosting",
"/ai-search/configuration/retrieval/cache",
"/ai-search/configuration/retrieval/embed-search-snippets",
"/ai-search/configuration/retrieval/filtering",
"/ai-search/configuration/retrieval/public-endpoint",
"/ai-search/configuration/retrieval/query-rewriting",
"/ai-search/configuration/retrieval/reranking",
"/ai-search/configuration/retrieval/result-controls",
"/ai-search/configuration/retrieval/system-prompt",
"/ai-search/get-started",
"/ai-search/get-started/api",
"/ai-search/get-started/dashboard",
"/ai-search/get-started/wrangler",
"/ai-search/how-to",
"/ai-search/how-to/bring-your-own-generation-model",
"/ai-search/how-to/nlweb",
"/ai-search/how-to/per-tenant-search",
"/ai-search/how-to/simple-search-engine",
"/ai-search/mcp-server",
"/ai-search/platform",
"/ai-search/platform/limits-pricing",
"/ai-search/platform/release-note",
"/ai-search/wrangler-commands",
"/ai/404",
"/ai/models",
"/ai/models/@cf/ai4bharat/indictrans2-en-indic-1B",
"/ai/models/@cf/aisingapore/gemma-sea-lion-v4-27b-it",
"/ai/models/@cf/baai/bge-base-en-v1.5",
"/ai/models/@cf/baai/bge-large-en-v1.5",
"/ai/models/@cf/baai/bge-m3",
"/ai/models/@cf/baai/bge-reranker-base",
"/ai/models/@cf/baai/bge-small-en-v1.5",
"/ai/models/@cf/black-forest-labs/flux-1-schnell",
"/ai/models/@cf/black-forest-labs/flux-2-dev",
"/ai/models/@cf/black-forest-labs/flux-2-klein-4b",
"/ai/models/@cf/black-forest-labs/flux-2-klein-9b",
"/ai/models/@cf/bytedance/stable-diffusion-xl-lightning",
"/ai/models/@cf/deepgram/aura-1",
"/ai/models/@cf/deepgram/aura-2-en",
"/ai/models/@cf/deepgram/aura-2-es",
"/ai/models/@cf/deepgram/flux",
"/ai/models/@cf/deepgram/nova-3",
"/ai/models/@cf/deepseek-ai/deepseek-r1-distill-qwen-32b",
"/ai/models/@cf/defog/sqlcoder-7b-2",
"/ai/models/@cf/facebook/bart-large-cnn",
"/ai/models/@cf/facebook/detr-resnet-50",
"/ai/models/@cf/google/embeddinggemma-300m",
"/ai/models/@cf/google/gemma-2b-it-lora",
"/ai/models/@cf/google/gemma-3-12b-it",
"/ai/models/@cf/google/gemma-4-26b-a4b-it",
"/ai/models/@cf/google/gemma-7b-it-lora",
"/ai/models/@cf/huggingface/distilbert-sst-2-int8",
"/ai/models/@cf/ibm-granite/granite-4.0-h-micro",
"/ai/models/@cf/leonardo/lucid-origin",
"/ai/models/@cf/leonardo/phoenix-1.0",
"/ai/models/@cf/llava-hf/llava-1.5-7b-hf",
"/ai/models/@cf/lykon/dreamshaper-8-lcm",
"/ai/models/@cf/meta-llama/llama-2-7b-chat-hf-lora",
"/ai/models/@cf/meta/llama-2-7b-chat-fp16",
"/ai/models/@cf/meta/llama-2-7b-chat-int8",
"/ai/models/@cf/meta/llama-3-8b-instruct",
"/ai/models/@cf/meta/llama-3-8b-instruct-awq",
"/ai/models/@cf/meta/llama-3.1-70b-instruct",
"/ai/models/@cf/meta/llama-3.1-8b-instruct",
"/ai/models/@cf/meta/llama-3.1-8b-instruct-awq",
"/ai/models/@cf/meta/llama-3.1-8b-instruct-fast",
"/ai/models/@cf/meta/llama-3.1-8b-instruct-fp8",
"/ai/models/@cf/meta/llama-3.2-11b-vision-instruct",
"/ai/models/@cf/meta/llama-3.2-1b-instruct",
"/ai/models/@cf/meta/llama-3.2-3b-instruct",
"/ai/models/@cf/meta/llama-3.3-70b-instruct-fp8-fast",
"/ai/models/@cf/meta/llama-4-scout-17b-16e-instruct",
"/ai/models/@cf/meta/llama-guard-3-8b",
"/ai/models/@cf/meta/m2m100-1.2b",
"/ai/models/@cf/microsoft/phi-2",
"/ai/models/@cf/microsoft/resnet-50",
"/ai/models/@cf/mistral/mistral-7b-instruct-v0.1",
"/ai/models/@cf/mistral/mistral-7b-instruct-v0.2-lora",
"/ai/models/@cf/mistralai/mistral-small-3.1-24b-instruct",
"/ai/models/@cf/moonshotai/kimi-k2.5",
"/ai/models/@cf/moonshotai/kimi-k2.6",
"/ai/models/@cf/moonshotai/kimi-k2.7-code",
"/ai/models/@cf/myshell-ai/melotts",
"/ai/models/@cf/nvidia/nemotron-3-120b-a12b",
"/ai/models/@cf/openai/gpt-oss-120b",
"/ai/models/@cf/openai/gpt-oss-20b",
"/ai/models/@cf/openai/whisper",
"/ai/models/@cf/openai/whisper-large-v3-turbo",
"/ai/models/@cf/openai/whisper-tiny-en",
"/ai/models/@cf/pfnet/plamo-embedding-1b",
"/ai/models/@cf/pipecat-ai/smart-turn-v2",
"/ai/models/@cf/qwen/qwen2.5-coder-32b-instruct",
"/ai/models/@cf/qwen/qwen3-30b-a3b-fp8",
"/ai/models/@cf/qwen/qwen3-embedding-0.6b",
"/ai/models/@cf/qwen/qwq-32b",
"/ai/models/@cf/runwayml/stable-diffusion-v1-5-img2img",
"/ai/models/@cf/runwayml/stable-diffusion-v1-5-inpainting",
"/ai/models/@cf/stabilityai/stable-diffusion-xl-base-1.0",
"/ai/models/@cf/unum/uform-gen2-qwen-500m",
"/ai/models/@cf/zai-org/glm-4.7-flash",
"/ai/models/@cf/zai-org/glm-5.2",
"/ai/models/@hf/google/gemma-7b-it",
"/ai/models/@hf/meta-llama/meta-llama-3-8b-instruct",
"/ai/models/@hf/mistral/mistral-7b-instruct-v0.2",
"/ai/models/@hf/nousresearch/hermes-2-pro-mistral-7b",
"/ai/models/alibaba/hh1-i2v",
"/ai/models/alibaba/hh1-t2v",
"/ai/models/alibaba/hh1.1-i2v",
"/ai/models/alibaba/hh1.1-r2v",
"/ai/models/alibaba/hh1.1-t2v",
"/ai/models/alibaba/qwen3-max",
"/ai/models/alibaba/qwen3.5-397b-a17b",
"/ai/models/alibaba/wan-2.6-image",
"/ai/models/alibaba/wan-2.7-i2v",
"/ai/models/anthropic/claude-fable-5",
"/ai/models/anthropic/claude-haiku-4.5",
"/ai/models/anthropic/claude-opus-4.5",
"/ai/models/anthropic/claude-opus-4.6",
"/ai/models/anthropic/claude-opus-4.7",
"/ai/models/anthropic/claude-opus-4.8",
"/ai/models/anthropic/claude-sonnet-4.5",
"/ai/models/anthropic/claude-sonnet-4.6",
"/ai/models/assemblyai/universal-3-pro",
"/ai/models/black-forest-labs/flux-2-flex",
"/ai/models/black-forest-labs/flux-2-max",
"/ai/models/black-forest-labs/flux-2-pro-preview",
"/ai/models/bytedance/seedance-2.0",
"/ai/models/bytedance/seedance-2.0-fast",
"/ai/models/bytedance/seedream-4.0",
"/ai/models/bytedance/seedream-4.5",
"/ai/models/bytedance/seedream-5-lite",
"/ai/models/deepseek/deepseek-v4-pro",
"/ai/models/google/gemini-2.5-flash",
"/ai/models/google/gemini-2.5-flash-lite",
"/ai/models/google/gemini-2.5-pro",
"/ai/models/google/gemini-3-flash",
"/ai/models/google/gemini-3.1-flash-lite",
"/ai/models/google/gemini-3.1-flash-tts",
"/ai/models/google/gemini-3.1-pro",
"/ai/models/google/gemini-3.5-flash",
"/ai/models/google/imagen-4",
"/ai/models/google/nano-banana",
"/ai/models/google/nano-banana-2",
"/ai/models/google/nano-banana-pro",
"/ai/models/google/veo-3",
"/ai/models/google/veo-3-fast",
"/ai/models/google/veo-3.1",
"/ai/models/google/veo-3.1-fast",
"/ai/models/inworld/tts-1.5-max",
"/ai/models/inworld/tts-1.5-mini",
"/ai/models/inworld/tts-2",
"/ai/models/krea/krea-2-large",
"/ai/models/krea/krea-2-medium",
"/ai/models/krea/krea-2-medium-turbo",
"/ai/models/minimax/hailuo-2.3",
"/ai/models/minimax/hailuo-2.3-fast",
"/ai/models/minimax/m2.7",
"/ai/models/minimax/m3",
"/ai/models/minimax/music-2.6",
"/ai/models/minimax/speech-2.8-hd",
"/ai/models/minimax/speech-2.8-turbo",
"/ai/models/openai/gpt-4.1",
"/ai/models/openai/gpt-4.1-mini",
"/ai/models/openai/gpt-4.1-nano",
"/ai/models/openai/gpt-4o",
"/ai/models/openai/gpt-4o-mini",
"/ai/models/openai/gpt-4o-transcribe",
"/ai/models/openai/gpt-5",
"/ai/models/openai/gpt-5-chat",
"/ai/models/openai/gpt-5-mini",
"/ai/models/openai/gpt-5-nano",
"/ai/models/openai/gpt-5.1",
"/ai/models/openai/gpt-5.1-chat",
"/ai/models/openai/gpt-5.4",
"/ai/models/openai/gpt-5.4-mini",
"/ai/models/openai/gpt-5.4-nano",
"/ai/models/openai/gpt-5.4-pro",
"/ai/models/openai/gpt-5.5",
"/ai/models/openai/gpt-5.5-pro",
"/ai/models/openai/gpt-image-1.5",
"/ai/models/openai/gpt-image-2",
"/ai/models/openai/o3",
"/ai/models/openai/o3-mini",
"/ai/models/openai/o4-mini",
"/ai/models/openai/tts-1",
"/ai/models/openai/tts-1-hd",
"/ai/models/pixverse/v5.6",
"/ai/models/pixverse/v6",
"/ai/models/pruna/p-image",
"/ai/models/pruna/p-image-edit",
"/ai/models/pruna/p-image-try-on",
"/ai/models/pruna/p-image-upscale",
"/ai/models/pruna/p-video",
"/ai/models/pruna/p-video-animate",
"/ai/models/pruna/p-video-avatar",
"/ai/models/pruna/p-video-replace",
"/ai/models/recraft/recraftv3",
"/ai/models/recraft/recraftv4",
"/ai/models/recraft/recraftv4-1",
"/ai/models/recraft/recraftv4-1-pro",
"/ai/models/recraft/recraftv4-1-pro-vector",
"/ai/models/recraft/recraftv4-1-utility",
"/ai/models/recraft/recraftv4-1-utility-pro",
"/ai/models/recraft/recraftv4-1-utility-pro-vector",
"/ai/models/recraft/recraftv4-1-utility-vector",
"/ai/models/recraft/recraftv4-1-vector",
"/ai/models/recraft/recraftv4-pro",
"/ai/models/recraft/recraftv4-pro-vector",
"/ai/models/recraft/recraftv4-vector",
"/ai/models/runwayml/aleph-2",
"/ai/models/runwayml/gen-4.5",
"/ai/models/vidu/q3-pro",
"/ai/models/vidu/q3-turbo",
"/ai/models/xai/grok-4.20-0309-non-reasoning",
"/ai/models/xai/grok-4.20-0309-reasoning",
"/ai/models/xai/grok-4.20-multi-agent-0309",
"/ai/models/xai/grok-4.3",
"/ai/models/xai/grok-imagine-image",
"/ai/models/xai/grok-imagine-image-quality",
"/ai/models/xai/grok-imagine-video",
"/ai/models/xai/grok-imagine-video-1.5-preview",
"/ai/models/xai/grok-stt",
"/ai/models/xai/grok-tts",
"/ai/models/xai/grok-voice",
"/ai/related-products",
"/ai/related-products/agents",
"/ai/related-products/ai-crawl-control",
"/ai/related-products/ai-gateway",
"/ai/related-products/ai-search",
"/ai/related-products/browser-rendering",
"/ai/related-products/cloudflare-agent",
"/ai/related-products/dynamic-workers",
"/ai/related-products/sandbox-sdk",
"/ai/related-products/vectorize",
"/ai/related-products/workers-ai",
"/analytics",
"/analytics/404",
"/analytics/account-and-zone-analytics",
"/analytics/account-and-zone-analytics/account-analytics",
"/analytics/account-and-zone-analytics/analytics-with-workers",
"/analytics/account-and-zone-analytics/app-security-reports",
"/analytics/account-and-zone-analytics/status-codes",
"/analytics/account-and-zone-analytics/threat-types",
"/analytics/account-and-zone-analytics/total-threats-stopped",
"/analytics/account-and-zone-analytics/zone-analytics",
"/analytics/analytics-engine",
"/analytics/analytics-engine/get-started",
"/analytics/analytics-engine/grafana",
"/analytics/analytics-engine/limits",
"/analytics/analytics-engine/pricing",
"/analytics/analytics-engine/recipes",
"/analytics/analytics-engine/recipes/usage-based-billing-for-your-saas-product",
"/analytics/analytics-engine/sampling",
"/analytics/analytics-engine/sql-api",
"/analytics/analytics-engine/sql-reference",
"/analytics/analytics-engine/sql-reference/aggregate-functions",
"/analytics/analytics-engine/sql-reference/bit-functions",
"/analytics/analytics-engine/sql-reference/conditional-functions",
"/analytics/analytics-engine/sql-reference/date-time-functions",
"/analytics/analytics-engine/sql-reference/encoding-functions",
"/analytics/analytics-engine/sql-reference/literals",
"/analytics/analytics-engine/sql-reference/mathematical-functions",
"/analytics/analytics-engine/sql-reference/operators",
"/analytics/analytics-engine/sql-reference/statements",
"/analytics/analytics-engine/sql-reference/string-functions",
"/analytics/analytics-engine/sql-reference/type-conversion-functions",
"/analytics/analytics-engine/worker-querying",
"/analytics/analytics-integrations",
"/analytics/analytics-integrations/datadog",
"/analytics/analytics-integrations/graylog",
"/analytics/analytics-integrations/new-relic",
"/analytics/analytics-integrations/prometheus",
"/analytics/analytics-integrations/sentinel",
"/analytics/analytics-integrations/splunk",
"/analytics/custom-dashboards",
"/analytics/faq",
"/analytics/faq/about-analytics",
"/analytics/faq/graphql-api-inconsistent-results",
"/analytics/faq/other-faqs",
"/analytics/faq/wae-faqs",
"/analytics/graphql-api",
"/analytics/graphql-api/errors",
"/analytics/graphql-api/features",
"/analytics/graphql-api/features/confidence-intervals",
"/analytics/graphql-api/features/data-sets",
"/analytics/graphql-api/features/discovery",
"/analytics/graphql-api/features/discovery/introspection",
"/analytics/graphql-api/features/discovery/settings",
"/analytics/graphql-api/features/filtering",
"/analytics/graphql-api/features/nested-structures",
"/analytics/graphql-api/features/pagination",
"/analytics/graphql-api/features/sorting",
"/analytics/graphql-api/getting-started",
"/analytics/graphql-api/getting-started/authentication",
"/analytics/graphql-api/getting-started/authentication/api-key-auth",
"/analytics/graphql-api/getting-started/authentication/api-token-auth",
"/analytics/graphql-api/getting-started/authentication/graphql-client-headers",
"/analytics/graphql-api/getting-started/compose-graphql-query",
"/analytics/graphql-api/getting-started/execute-graphql-query",
"/analytics/graphql-api/getting-started/explore-graphql-schema",
"/analytics/graphql-api/getting-started/querying-basics",
"/analytics/graphql-api/limits",
"/analytics/graphql-api/mcp-server",
"/analytics/graphql-api/migration-guides",
"/analytics/graphql-api/migration-guides/graphql-api-analytics",
"/analytics/graphql-api/migration-guides/network-analytics-v2",
"/analytics/graphql-api/migration-guides/network-analytics-v2/differences",
"/analytics/graphql-api/migration-guides/network-analytics-v2/node-reference",
"/analytics/graphql-api/migration-guides/network-analytics-v2/schema-map",
"/analytics/graphql-api/migration-guides/zone-analytics",
"/analytics/graphql-api/migration-guides/zone-analytics-colos",
"/analytics/graphql-api/sampling",
"/analytics/graphql-api/tutorials",
"/analytics/graphql-api/tutorials/capture-graphql-queries-from-dashboard",
"/analytics/graphql-api/tutorials/end-customer-analytics",
"/analytics/graphql-api/tutorials/querying-access-login-events",
"/analytics/graphql-api/tutorials/querying-container-metrics",
"/analytics/graphql-api/tutorials/querying-email-routing",
"/analytics/graphql-api/tutorials/querying-firewall-events",
"/analytics/graphql-api/tutorials/querying-magic-transit-endpoint-healthcheck-results",
"/analytics/graphql-api/tutorials/querying-magic-transit-tunnel-bandwidth-analytics",
"/analytics/graphql-api/tutorials/querying-magic-transit-tunnel-healthcheck-results",
"/analytics/graphql-api/tutorials/querying-network-firewall-ids-samples",
"/analytics/graphql-api/tutorials/querying-network-firewall-samples",
"/analytics/graphql-api/tutorials/querying-workers-metrics",
"/analytics/graphql-api/tutorials/use-graphql-create-widgets",
"/analytics/network-analytics",
"/analytics/network-analytics/configure",
"/analytics/network-analytics/configure/displayed-data",
"/analytics/network-analytics/configure/share-export",
"/analytics/network-analytics/configure/time-range",
"/analytics/network-analytics/get-started",
"/analytics/network-analytics/reference",
"/analytics/network-analytics/reference/data-collection",
"/analytics/network-analytics/understand",
"/analytics/network-analytics/understand/concepts",
"/analytics/network-analytics/understand/main-dashboard",
"/analytics/sampling",
"/analytics/types-of-analytics",
"/api-shield",
"/api-shield/404",
"/api-shield/api-gateway",
"/api-shield/changelog",
"/api-shield/get-started",
"/api-shield/glossary",
"/api-shield/management-and-monitoring",
"/api-shield/management-and-monitoring/api-routing",
"/api-shield/management-and-monitoring/developer-portal",
"/api-shield/management-and-monitoring/endpoint-labels",
"/api-shield/management-and-monitoring/endpoint-management",
"/api-shield/management-and-monitoring/endpoint-management/schema-learning",
"/api-shield/management-and-monitoring/session-identifiers",
"/api-shield/plans",
"/api-shield/reference",
"/api-shield/reference/classic-schema-validation",
"/api-shield/reference/terraform",
"/api-shield/security",
"/api-shield/security/api-discovery",
"/api-shield/security/authentication-posture",
"/api-shield/security/bola-vulnerability-detection",
"/api-shield/security/graphql-protection",
"/api-shield/security/graphql-protection/api",
"/api-shield/security/jwt-validation",
"/api-shield/security/jwt-validation/api",
"/api-shield/security/jwt-validation/jwt-worker",
"/api-shield/security/jwt-validation/transform-rules",
"/api-shield/security/mtls",
"/api-shield/security/mtls/byo-ca",
"/api-shield/security/mtls/configure",
"/api-shield/security/schema-validation",
"/api-shield/security/schema-validation/api",
"/api-shield/security/sequence-analytics",
"/api-shield/security/sequence-mitigation",
"/api-shield/security/sequence-mitigation/api",
"/api-shield/security/sequence-mitigation/custom-rules",
"/api-shield/security/sequence-mitigation/manage-sequence-rules",
"/api-shield/security/volumetric-abuse-detection",
"/api-shield/security/vulnerability-scanner",
"/argo-smart-routing",
"/argo-smart-routing/404",
"/argo-smart-routing/analytics",
"/argo-smart-routing/argo-for-packets",
"/argo-smart-routing/get-started",
"/artifacts",
"/artifacts/404",
"/artifacts/api",
"/artifacts/api/errors",
"/artifacts/api/git-protocol",
"/artifacts/api/rest-api",
"/artifacts/api/workers-binding",
"/artifacts/api/wrangler",
"/artifacts/concepts",
"/artifacts/concepts/best-practices",
"/artifacts/concepts/how-artifacts-works",
"/artifacts/concepts/namespaces",
"/artifacts/concepts/repositories",
"/artifacts/examples",
"/artifacts/examples/git-client",
"/artifacts/examples/isomorphic-git",
"/artifacts/examples/sandbox-sdk-artifacts",
"/artifacts/get-started",
"/artifacts/get-started/rest-api",
"/artifacts/get-started/workers",
"/artifacts/guides",
"/artifacts/guides/artifact-fs",
"/artifacts/guides/authentication",
"/artifacts/guides/event-subscriptions",
"/artifacts/guides/import-repositories",
"/artifacts/observability",
"/artifacts/observability/metrics",
"/artifacts/platform",
"/artifacts/platform/changelog",
"/artifacts/platform/limits",
"/artifacts/platform/pricing",
"/automatic-platform-optimization",
"/automatic-platform-optimization/404",
"/automatic-platform-optimization/about",
"/automatic-platform-optimization/about/plugin-compatibility",
"/automatic-platform-optimization/about/test-current-speed",
"/automatic-platform-optimization/get-started",
"/automatic-platform-optimization/get-started/activate-cf-wp-plugin",
"/automatic-platform-optimization/get-started/change-nameservers",
"/automatic-platform-optimization/get-started/confirm-dns-records",
"/automatic-platform-optimization/get-started/verify-apo-works",
"/automatic-platform-optimization/reference",
"/automatic-platform-optimization/reference/cache-device-type",
"/automatic-platform-optimization/reference/page-rule-integration",
"/automatic-platform-optimization/reference/query-parameters",
"/automatic-platform-optimization/reference/subdomain-subdirectories",
"/automatic-platform-optimization/troubleshooting",
"/automatic-platform-optimization/troubleshooting/faq",
"/billing",
"/billing/404",
"/billing/get-started",
"/billing/get-started/create-billing-profile",
"/billing/get-started/update-billing-info",
"/billing/manage",
"/billing/manage/billable-usage",
"/billing/manage/budget-alerts",
"/billing/manage/cancel-subscription",
"/billing/manage/change-plan",
"/billing/manage/invoices",
"/billing/manage/optimize-costs",
"/billing/manage/pay-invoices-overdue-balances",
"/billing/payment-methods",
"/billing/payment-methods/additional-payment-method-auto-retry",
"/billing/payment-methods/instant-bank-payments-link",
"/billing/payment-methods/stablecoin-payments",
"/billing/threshold-billing",
"/billing/troubleshoot",
"/billing/troubleshoot/error-reference",
"/billing/troubleshoot/resolve-cannot-remove-payment-method",
"/billing/troubleshoot/resolve-you-cannot-modify-this-subscription",
"/billing/troubleshoot/resolve-zone-cannot-be-upgraded",
"/billing/troubleshoot/troubleshoot-failed-payments",
"/billing/troubleshoot/troubleshoot-invoices",
"/billing/understand",
"/billing/understand/billing-permissions",
"/billing/understand/billing-policy",
"/billing/understand/faq",
"/billing/understand/how-billing-works",
"/billing/understand/how-charges-accrue",
"/billing/understand/preview-services",
"/billing/understand/sales-tax",
"/billing/understand/usage-based-billing",
"/bots",
"/bots/404",
"/bots/account-abuse-protection",
"/bots/additional-configurations",
"/bots/additional-configurations/ai-labyrinth",
"/bots/additional-configurations/block-ai-bots",
"/bots/additional-configurations/custom-rules",
"/bots/additional-configurations/detection-ids",
"/bots/additional-configurations/detection-ids/account-takeover-detections",
"/bots/additional-configurations/detection-ids/additional-detections",
"/bots/additional-configurations/detection-ids/scraping-detections",
"/bots/additional-configurations/ja3-ja4-fingerprint",
"/bots/additional-configurations/ja3-ja4-fingerprint/signals-intelligence",
"/bots/additional-configurations/javascript-detections",
"/bots/additional-configurations/managed-robots-txt",
"/bots/additional-configurations/sequence-rules",
"/bots/additional-configurations/static-resources",
"/bots/bot-analytics",
"/bots/changelog",
"/bots/concepts",
"/bots/concepts/bot",
"/bots/concepts/bot-detection-engines",
"/bots/concepts/bot-score",
"/bots/concepts/bot-tags",
"/bots/concepts/bot/signed-agents",
"/bots/concepts/bot/signed-agents/policy",
"/bots/concepts/bot/verified-bots",
"/bots/concepts/bot/verified-bots/policy",
"/bots/concepts/feedback-loop",
"/bots/get-started",
"/bots/get-started/bot-fight-mode",
"/bots/get-started/bot-management",
"/bots/get-started/super-bot-fight-mode",
"/bots/glossary",
"/bots/plans",
"/bots/plans/biz-and-ent",
"/bots/plans/bm-subscription",
"/bots/plans/free",
"/bots/plans/pro",
"/bots/reference",
"/bots/reference/alerts",
"/bots/reference/bot-management-variables",
"/bots/reference/bot-verification",
"/bots/reference/bot-verification/ip-validation",
"/bots/reference/bot-verification/web-bot-auth",
"/bots/reference/machine-learning-models",
"/bots/reference/sample-terms",
"/bots/troubleshooting",
"/bots/troubleshooting/bot-management-skips",
"/bots/troubleshooting/false-positives",
"/bots/troubleshooting/wordpress-loopback-issue",
"/bots/workers-templates",
"/bots/workers-templates/delay-action",
"/browser-run",
"/browser-run/404",
"/browser-run/cdp",
"/browser-run/cdp/mcp-clients",
"/browser-run/cdp/playwright",
"/browser-run/cdp/puppeteer",
"/browser-run/cdp/session-management",
"/browser-run/changelog",
"/browser-run/examples",
"/browser-run/faq",
"/browser-run/features",
"/browser-run/features/custom-fonts",
"/browser-run/features/human-in-the-loop",
"/browser-run/features/live-view",
"/browser-run/features/reuse-sessions",
"/browser-run/features/session-recording",
"/browser-run/features/webmcp",
"/browser-run/get-started",
"/browser-run/how-to",
"/browser-run/how-to/browser-run-with-do",
"/browser-run/how-to/deploy-worker",
"/browser-run/how-to/og-images-astro",
"/browser-run/how-to/pdf-generation",
"/browser-run/how-to/pre-render-pages",
"/browser-run/how-to/queues",
"/browser-run/limits",
"/browser-run/mcp-server",
"/browser-run/playwright",
"/browser-run/playwright/playwright-mcp",
"/browser-run/pricing",
"/browser-run/puppeteer",
"/browser-run/quick-actions",
"/browser-run/quick-actions/api-reference",
"/browser-run/quick-actions/content-endpoint",
"/browser-run/quick-actions/crawl-endpoint",
"/browser-run/quick-actions/json-endpoint",
"/browser-run/quick-actions/links-endpoint",
"/browser-run/quick-actions/markdown-endpoint",
"/browser-run/quick-actions/pdf-endpoint",
"/browser-run/quick-actions/scrape-endpoint",
"/browser-run/quick-actions/screenshot-endpoint",
"/browser-run/quick-actions/snapshot",
"/browser-run/reference",
"/browser-run/reference/automatic-request-headers",
"/browser-run/reference/browser-close-reasons",
"/browser-run/reference/robots-txt",
"/browser-run/reference/supported-fonts",
"/browser-run/reference/timeouts",
"/browser-run/reference/wrangler",
"/browser-run/reference/wrangler-commands",
"/browser-run/stagehand",
"/byoip",
"/byoip/404",
"/byoip/address-maps",
"/byoip/address-maps/setup",
"/byoip/changelog",
"/byoip/concepts",
"/byoip/concepts/dynamic-advertisement",
"/byoip/concepts/dynamic-advertisement/best-practices",
"/byoip/concepts/irr-entries",
"/byoip/concepts/irr-entries/best-practices",
"/byoip/concepts/loa",
"/byoip/concepts/prefix-delegations",
"/byoip/concepts/route-filtering-rpki",
"/byoip/concepts/static-ips",
"/byoip/get-started",
"/byoip/glossary",
"/byoip/route-leak-detection",
"/byoip/service-bindings",
"/byoip/service-bindings/cdn-and-spectrum",
"/byoip/service-bindings/magic-transit-with-cdn",
"/byoip/troubleshooting",
"/byoip/troubleshooting/prefix-validation",
"/cache",
"/cache/404",
"/cache/advanced-configuration",
"/cache/advanced-configuration/cache-reserve",
"/cache/advanced-configuration/crawler-hints",
"/cache/advanced-configuration/early-hints",
"/cache/advanced-configuration/query-string-sort",
"/cache/advanced-configuration/serve-tailored-content",
"/cache/advanced-configuration/vary-for-images",
"/cache/cache-security",
"/cache/cache-security/avoid-web-poisoning",
"/cache/cache-security/cache-deception-armor",
"/cache/cache-security/cors",
"/cache/changelog",
"/cache/concepts",
"/cache/concepts/cache-behavior",
"/cache/concepts/cache-control",
"/cache/concepts/cache-responses",
"/cache/concepts/cdn-cache-control",
"/cache/concepts/customize-cache",
"/cache/concepts/default-cache-behavior",
"/cache/concepts/retention-vs-freshness",
"/cache/concepts/revalidation",
"/cache/concepts/vary",
"/cache/get-started",
"/cache/glossary",
"/cache/how-to",
"/cache/how-to/always-online",
"/cache/how-to/cache-keys",
"/cache/how-to/cache-response-rules",
"/cache/how-to/cache-response-rules/create-api",
"/cache/how-to/cache-response-rules/create-dashboard",
"/cache/how-to/cache-response-rules/settings",
"/cache/how-to/cache-response-rules/terraform-example",
"/cache/how-to/cache-rules",
"/cache/how-to/cache-rules/create-api",
"/cache/how-to/cache-rules/create-dashboard",
"/cache/how-to/cache-rules/examples",
"/cache/how-to/cache-rules/examples/browser-cache-ttl",
"/cache/how-to/cache-rules/examples/bypass-cache-on-cookie",
"/cache/how-to/cache-rules/examples/cache-by-hostname-list",
"/cache/how-to/cache-rules/examples/cache-deception-armor",
"/cache/how-to/cache-rules/examples/cache-device-type",
"/cache/how-to/cache-rules/examples/cache-everything",
"/cache/how-to/cache-rules/examples/cache-everything-ignore-query-strings",
"/cache/how-to/cache-rules/examples/cache-ttl-by-status-code",
"/cache/how-to/cache-rules/examples/custom-cache-key",
"/cache/how-to/cache-rules/examples/edge-ttl",