@unstoppabledomains/ud-cli 0.1.25 → 0.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/api-commands.d.ts.map +1 -1
- package/dist/commands/api-commands.js +4 -1
- package/dist/commands/api-commands.js.map +1 -1
- package/dist/generated/openapi-spec.json +920 -206
- package/dist/lib/command-hooks.d.ts.map +1 -1
- package/dist/lib/command-hooks.js +74 -1
- package/dist/lib/command-hooks.js.map +1 -1
- package/dist/lib/command-registry.d.ts.map +1 -1
- package/dist/lib/command-registry.js +44 -0
- package/dist/lib/command-registry.js.map +1 -1
- package/dist/lib/formatter.d.ts.map +1 -1
- package/dist/lib/formatter.js +57 -3
- package/dist/lib/formatter.js.map +1 -1
- package/dist/lib/spec-parser.d.ts +1 -1
- package/dist/lib/spec-parser.d.ts.map +1 -1
- package/dist/lib/spec-parser.js +6 -2
- package/dist/lib/spec-parser.js.map +1 -1
- package/package.json +1 -1
|
@@ -170,6 +170,19 @@
|
|
|
170
170
|
"schema": {
|
|
171
171
|
"type": "object",
|
|
172
172
|
"properties": {
|
|
173
|
+
"page": {
|
|
174
|
+
"type": "number",
|
|
175
|
+
"minimum": 1,
|
|
176
|
+
"description": "Page number, 1-indexed (default: 1)",
|
|
177
|
+
"example": 1
|
|
178
|
+
},
|
|
179
|
+
"pageSize": {
|
|
180
|
+
"type": "number",
|
|
181
|
+
"minimum": 1,
|
|
182
|
+
"maximum": 100,
|
|
183
|
+
"description": "Number of domains per page, 1-100 (default: 50)",
|
|
184
|
+
"example": 50
|
|
185
|
+
},
|
|
173
186
|
"searchTerm": {
|
|
174
187
|
"type": "string",
|
|
175
188
|
"description": "Optional search term to filter domains by name"
|
|
@@ -248,19 +261,6 @@
|
|
|
248
261
|
"desc"
|
|
249
262
|
],
|
|
250
263
|
"description": "Sort direction: \"asc\" (ascending, default) or \"desc\" (descending)"
|
|
251
|
-
},
|
|
252
|
-
"offset": {
|
|
253
|
-
"type": "number",
|
|
254
|
-
"minimum": 0,
|
|
255
|
-
"description": "Number of items to skip for pagination (default: 0)",
|
|
256
|
-
"example": 0
|
|
257
|
-
},
|
|
258
|
-
"limit": {
|
|
259
|
-
"type": "number",
|
|
260
|
-
"minimum": 1,
|
|
261
|
-
"maximum": 100,
|
|
262
|
-
"description": "Maximum number of items to return (1-100, default: 50)",
|
|
263
|
-
"example": 50
|
|
264
264
|
}
|
|
265
265
|
}
|
|
266
266
|
}
|
|
@@ -1448,18 +1448,9 @@
|
|
|
1448
1448
|
],
|
|
1449
1449
|
"description": "Filter by group: \"active\" (pending) or \"sold\" (completed)"
|
|
1450
1450
|
},
|
|
1451
|
-
"
|
|
1452
|
-
"type": "number",
|
|
1453
|
-
"minimum": 0,
|
|
1454
|
-
"description": "Number of items to skip for pagination (default: 0)",
|
|
1455
|
-
"example": 0
|
|
1456
|
-
},
|
|
1457
|
-
"limit": {
|
|
1451
|
+
"page": {
|
|
1458
1452
|
"type": "number",
|
|
1459
|
-
"
|
|
1460
|
-
"maximum": 100,
|
|
1461
|
-
"description": "Maximum number of items to return (1-100, default: 50)",
|
|
1462
|
-
"example": 50
|
|
1453
|
+
"description": "Page number (1-indexed)"
|
|
1463
1454
|
}
|
|
1464
1455
|
}
|
|
1465
1456
|
}
|
|
@@ -1582,18 +1573,18 @@
|
|
|
1582
1573
|
"description": "Skip conversations with no messages (default: true)",
|
|
1583
1574
|
"default": true
|
|
1584
1575
|
},
|
|
1585
|
-
"
|
|
1586
|
-
"type": "
|
|
1587
|
-
"
|
|
1588
|
-
"
|
|
1589
|
-
"
|
|
1576
|
+
"skip": {
|
|
1577
|
+
"type": "integer",
|
|
1578
|
+
"description": "Number of conversations to skip (pagination offset, default: 0)",
|
|
1579
|
+
"default": 0,
|
|
1580
|
+
"minimum": 0
|
|
1590
1581
|
},
|
|
1591
|
-
"
|
|
1592
|
-
"type": "
|
|
1582
|
+
"take": {
|
|
1583
|
+
"type": "integer",
|
|
1584
|
+
"description": "Number of conversations to return (1-100, default: 20)",
|
|
1585
|
+
"default": 20,
|
|
1593
1586
|
"minimum": 1,
|
|
1594
|
-
"maximum": 100
|
|
1595
|
-
"description": "Maximum number of items to return (1-100, default: 20)",
|
|
1596
|
-
"example": 20
|
|
1587
|
+
"maximum": 100
|
|
1597
1588
|
}
|
|
1598
1589
|
}
|
|
1599
1590
|
}
|
|
@@ -3019,6 +3010,97 @@
|
|
|
3019
3010
|
}
|
|
3020
3011
|
}
|
|
3021
3012
|
},
|
|
3013
|
+
"/mcp/v1/actions/ud_ai_credits_get": {
|
|
3014
|
+
"post": {
|
|
3015
|
+
"operationId": "aiCreditsGet",
|
|
3016
|
+
"summary": "Get AI credit balance and available packs",
|
|
3017
|
+
"description": "Check your AI credit balance and view available credit packs for purchase. AI credits are used to generate AI-powered landing pages (1 credit per domain).",
|
|
3018
|
+
"tags": [
|
|
3019
|
+
"AI Credits"
|
|
3020
|
+
],
|
|
3021
|
+
"security": [
|
|
3022
|
+
{
|
|
3023
|
+
"bearerAuth": []
|
|
3024
|
+
}
|
|
3025
|
+
],
|
|
3026
|
+
"requestBody": {
|
|
3027
|
+
"required": true,
|
|
3028
|
+
"content": {
|
|
3029
|
+
"application/json": {
|
|
3030
|
+
"schema": {
|
|
3031
|
+
"type": "object",
|
|
3032
|
+
"properties": {}
|
|
3033
|
+
}
|
|
3034
|
+
}
|
|
3035
|
+
}
|
|
3036
|
+
},
|
|
3037
|
+
"responses": {
|
|
3038
|
+
"200": {
|
|
3039
|
+
"description": "AI credit balance and available tiers",
|
|
3040
|
+
"content": {
|
|
3041
|
+
"application/json": {
|
|
3042
|
+
"schema": {
|
|
3043
|
+
"$ref": "#/components/schemas/AiCreditsResponse"
|
|
3044
|
+
}
|
|
3045
|
+
}
|
|
3046
|
+
}
|
|
3047
|
+
},
|
|
3048
|
+
"401": {
|
|
3049
|
+
"description": "Authentication required"
|
|
3050
|
+
}
|
|
3051
|
+
}
|
|
3052
|
+
}
|
|
3053
|
+
},
|
|
3054
|
+
"/mcp/v1/actions/ud_cart_add_ai_credits": {
|
|
3055
|
+
"post": {
|
|
3056
|
+
"operationId": "cartAddAiCredits",
|
|
3057
|
+
"summary": "Add AI credit pack to cart",
|
|
3058
|
+
"description": "Add an AI credit pack to your shopping cart. Provide either a productCode or tierSize.",
|
|
3059
|
+
"tags": [
|
|
3060
|
+
"Cart"
|
|
3061
|
+
],
|
|
3062
|
+
"security": [
|
|
3063
|
+
{
|
|
3064
|
+
"bearerAuth": []
|
|
3065
|
+
}
|
|
3066
|
+
],
|
|
3067
|
+
"requestBody": {
|
|
3068
|
+
"required": true,
|
|
3069
|
+
"content": {
|
|
3070
|
+
"application/json": {
|
|
3071
|
+
"schema": {
|
|
3072
|
+
"type": "object",
|
|
3073
|
+
"properties": {
|
|
3074
|
+
"productCode": {
|
|
3075
|
+
"type": "string",
|
|
3076
|
+
"description": "AI credits pack product code (e.g., \"ai-credits-pack-25\")"
|
|
3077
|
+
},
|
|
3078
|
+
"tierSize": {
|
|
3079
|
+
"type": "integer",
|
|
3080
|
+
"description": "Number of credits in the pack (e.g., 25, 50, 100)"
|
|
3081
|
+
}
|
|
3082
|
+
}
|
|
3083
|
+
}
|
|
3084
|
+
}
|
|
3085
|
+
}
|
|
3086
|
+
},
|
|
3087
|
+
"responses": {
|
|
3088
|
+
"200": {
|
|
3089
|
+
"description": "AI credits added to cart",
|
|
3090
|
+
"content": {
|
|
3091
|
+
"application/json": {
|
|
3092
|
+
"schema": {
|
|
3093
|
+
"$ref": "#/components/schemas/AddAiCreditsToCartResponse"
|
|
3094
|
+
}
|
|
3095
|
+
}
|
|
3096
|
+
}
|
|
3097
|
+
},
|
|
3098
|
+
"401": {
|
|
3099
|
+
"description": "Authentication required"
|
|
3100
|
+
}
|
|
3101
|
+
}
|
|
3102
|
+
}
|
|
3103
|
+
},
|
|
3022
3104
|
"/mcp/v1/actions/ud_domain_generate_lander": {
|
|
3023
3105
|
"post": {
|
|
3024
3106
|
"operationId": "generateLander",
|
|
@@ -3104,6 +3186,14 @@
|
|
|
3104
3186
|
},
|
|
3105
3187
|
"failureCount": {
|
|
3106
3188
|
"type": "number"
|
|
3189
|
+
},
|
|
3190
|
+
"quotaRemaining": {
|
|
3191
|
+
"type": "number",
|
|
3192
|
+
"description": "Estimated AI credits remaining after this request"
|
|
3193
|
+
},
|
|
3194
|
+
"purchaseHint": {
|
|
3195
|
+
"type": "string",
|
|
3196
|
+
"description": "Present when credits are low with purchase instructions"
|
|
3107
3197
|
}
|
|
3108
3198
|
}
|
|
3109
3199
|
}
|
|
@@ -3650,117 +3740,706 @@
|
|
|
3650
3740
|
}
|
|
3651
3741
|
}
|
|
3652
3742
|
}
|
|
3653
|
-
}
|
|
3654
|
-
},
|
|
3655
|
-
"components": {
|
|
3656
|
-
"securitySchemes": {
|
|
3657
|
-
"bearerAuth": {
|
|
3658
|
-
"type": "http",
|
|
3659
|
-
"scheme": "bearer",
|
|
3660
|
-
"description": "API key for authenticated operations. Obtain from your Unstoppable Domains account settings."
|
|
3661
|
-
}
|
|
3662
3743
|
},
|
|
3663
|
-
"
|
|
3664
|
-
"
|
|
3665
|
-
"
|
|
3666
|
-
"
|
|
3667
|
-
"
|
|
3668
|
-
|
|
3669
|
-
|
|
3670
|
-
|
|
3671
|
-
|
|
3672
|
-
|
|
3673
|
-
"
|
|
3674
|
-
|
|
3675
|
-
|
|
3676
|
-
|
|
3677
|
-
|
|
3678
|
-
|
|
3679
|
-
|
|
3680
|
-
|
|
3681
|
-
|
|
3682
|
-
|
|
3683
|
-
|
|
3684
|
-
|
|
3685
|
-
"
|
|
3686
|
-
"
|
|
3687
|
-
|
|
3688
|
-
"
|
|
3744
|
+
"/mcp/v1/actions/ud_backorder_create": {
|
|
3745
|
+
"post": {
|
|
3746
|
+
"operationId": "backorderCreate",
|
|
3747
|
+
"tags": [
|
|
3748
|
+
"Backorders"
|
|
3749
|
+
],
|
|
3750
|
+
"summary": "Create domain backorders",
|
|
3751
|
+
"description": "Create backorders for one or more expiring DNS domains. The system monitors the domain and automatically registers it when it drops.",
|
|
3752
|
+
"security": [
|
|
3753
|
+
{
|
|
3754
|
+
"bearerAuth": []
|
|
3755
|
+
}
|
|
3756
|
+
],
|
|
3757
|
+
"requestBody": {
|
|
3758
|
+
"required": true,
|
|
3759
|
+
"content": {
|
|
3760
|
+
"application/json": {
|
|
3761
|
+
"schema": {
|
|
3762
|
+
"type": "object",
|
|
3763
|
+
"required": [
|
|
3764
|
+
"domains"
|
|
3765
|
+
],
|
|
3766
|
+
"properties": {
|
|
3767
|
+
"domains": {
|
|
3768
|
+
"type": "array",
|
|
3769
|
+
"minItems": 1,
|
|
3770
|
+
"maxItems": 50,
|
|
3771
|
+
"items": {
|
|
3772
|
+
"type": "object",
|
|
3773
|
+
"required": [
|
|
3774
|
+
"name",
|
|
3775
|
+
"contactId",
|
|
3776
|
+
"availableAfterTimestamp"
|
|
3777
|
+
],
|
|
3778
|
+
"properties": {
|
|
3779
|
+
"name": {
|
|
3780
|
+
"type": "string",
|
|
3781
|
+
"description": "Domain name to backorder"
|
|
3782
|
+
},
|
|
3783
|
+
"contactId": {
|
|
3784
|
+
"type": "string",
|
|
3785
|
+
"description": "ICANN contact ID for domain registration"
|
|
3786
|
+
},
|
|
3787
|
+
"availableAfterTimestamp": {
|
|
3788
|
+
"type": "number",
|
|
3789
|
+
"description": "Unix timestamp (ms) when the domain becomes available for registration"
|
|
3790
|
+
}
|
|
3791
|
+
}
|
|
3792
|
+
}
|
|
3689
3793
|
}
|
|
3690
3794
|
}
|
|
3691
3795
|
}
|
|
3692
|
-
},
|
|
3693
|
-
"description": "Array of search queries with metadata (present for multiple query requests)"
|
|
3694
|
-
},
|
|
3695
|
-
"searchedTlds": {
|
|
3696
|
-
"type": "array",
|
|
3697
|
-
"items": {
|
|
3698
|
-
"type": "string"
|
|
3699
|
-
},
|
|
3700
|
-
"description": "TLDs that were searched"
|
|
3701
|
-
},
|
|
3702
|
-
"invalidReason": {
|
|
3703
|
-
"type": [
|
|
3704
|
-
"string",
|
|
3705
|
-
"null"
|
|
3706
|
-
],
|
|
3707
|
-
"description": "Validation error reason (present for single query requests)"
|
|
3708
|
-
},
|
|
3709
|
-
"invalidCharacters": {
|
|
3710
|
-
"type": [
|
|
3711
|
-
"array",
|
|
3712
|
-
"null"
|
|
3713
|
-
],
|
|
3714
|
-
"items": {
|
|
3715
|
-
"type": "string"
|
|
3716
|
-
},
|
|
3717
|
-
"description": "Invalid characters found (present for single query requests)"
|
|
3718
|
-
},
|
|
3719
|
-
"results": {
|
|
3720
|
-
"type": "array",
|
|
3721
|
-
"items": {
|
|
3722
|
-
"$ref": "#/components/schemas/DomainResult"
|
|
3723
|
-
}
|
|
3724
|
-
},
|
|
3725
|
-
"pagination": {
|
|
3726
|
-
"type": "object",
|
|
3727
|
-
"properties": {
|
|
3728
|
-
"total": {
|
|
3729
|
-
"type": "number",
|
|
3730
|
-
"description": "Total number of results"
|
|
3731
|
-
},
|
|
3732
|
-
"count": {
|
|
3733
|
-
"type": "number",
|
|
3734
|
-
"description": "Number of results in this response"
|
|
3735
|
-
},
|
|
3736
|
-
"offset": {
|
|
3737
|
-
"type": "number",
|
|
3738
|
-
"description": "Current offset"
|
|
3739
|
-
},
|
|
3740
|
-
"limit": {
|
|
3741
|
-
"type": "number",
|
|
3742
|
-
"description": "Max results per page"
|
|
3743
|
-
},
|
|
3744
|
-
"hasMore": {
|
|
3745
|
-
"type": "boolean",
|
|
3746
|
-
"description": "Whether more results are available"
|
|
3747
|
-
},
|
|
3748
|
-
"nextOffset": {
|
|
3749
|
-
"type": [
|
|
3750
|
-
"number",
|
|
3751
|
-
"null"
|
|
3752
|
-
],
|
|
3753
|
-
"description": "Offset for next page, null if no more pages"
|
|
3754
|
-
}
|
|
3755
3796
|
}
|
|
3756
|
-
}
|
|
3757
|
-
|
|
3758
|
-
|
|
3759
|
-
|
|
3760
|
-
|
|
3761
|
-
|
|
3762
|
-
|
|
3763
|
-
|
|
3797
|
+
}
|
|
3798
|
+
},
|
|
3799
|
+
"responses": {
|
|
3800
|
+
"200": {
|
|
3801
|
+
"description": "Backorder creation results",
|
|
3802
|
+
"content": {
|
|
3803
|
+
"application/json": {
|
|
3804
|
+
"schema": {
|
|
3805
|
+
"type": "object",
|
|
3806
|
+
"properties": {
|
|
3807
|
+
"results": {
|
|
3808
|
+
"type": "array",
|
|
3809
|
+
"items": {
|
|
3810
|
+
"type": "object",
|
|
3811
|
+
"properties": {
|
|
3812
|
+
"name": {
|
|
3813
|
+
"type": "string"
|
|
3814
|
+
},
|
|
3815
|
+
"success": {
|
|
3816
|
+
"type": "boolean"
|
|
3817
|
+
},
|
|
3818
|
+
"backorderId": {
|
|
3819
|
+
"type": "number"
|
|
3820
|
+
},
|
|
3821
|
+
"price": {
|
|
3822
|
+
"type": "number"
|
|
3823
|
+
},
|
|
3824
|
+
"serviceFee": {
|
|
3825
|
+
"type": "number"
|
|
3826
|
+
},
|
|
3827
|
+
"status": {
|
|
3828
|
+
"type": "string"
|
|
3829
|
+
},
|
|
3830
|
+
"error": {
|
|
3831
|
+
"type": "string"
|
|
3832
|
+
}
|
|
3833
|
+
}
|
|
3834
|
+
}
|
|
3835
|
+
},
|
|
3836
|
+
"successCount": {
|
|
3837
|
+
"type": "number"
|
|
3838
|
+
},
|
|
3839
|
+
"failureCount": {
|
|
3840
|
+
"type": "number"
|
|
3841
|
+
},
|
|
3842
|
+
"message": {
|
|
3843
|
+
"type": "string"
|
|
3844
|
+
}
|
|
3845
|
+
}
|
|
3846
|
+
}
|
|
3847
|
+
}
|
|
3848
|
+
}
|
|
3849
|
+
},
|
|
3850
|
+
"401": {
|
|
3851
|
+
"description": "Authentication required"
|
|
3852
|
+
}
|
|
3853
|
+
}
|
|
3854
|
+
}
|
|
3855
|
+
},
|
|
3856
|
+
"/mcp/v1/actions/ud_backorder_cancel": {
|
|
3857
|
+
"post": {
|
|
3858
|
+
"operationId": "backorderCancel",
|
|
3859
|
+
"tags": [
|
|
3860
|
+
"Backorders"
|
|
3861
|
+
],
|
|
3862
|
+
"summary": "Cancel domain backorders",
|
|
3863
|
+
"description": "Cancel one or more pending domain backorders. Refunds the Account Balance hold (minus non-refundable service fee) and removes the scheduled registration job.",
|
|
3864
|
+
"security": [
|
|
3865
|
+
{
|
|
3866
|
+
"bearerAuth": []
|
|
3867
|
+
}
|
|
3868
|
+
],
|
|
3869
|
+
"requestBody": {
|
|
3870
|
+
"required": true,
|
|
3871
|
+
"content": {
|
|
3872
|
+
"application/json": {
|
|
3873
|
+
"schema": {
|
|
3874
|
+
"type": "object",
|
|
3875
|
+
"required": [
|
|
3876
|
+
"backorderIds"
|
|
3877
|
+
],
|
|
3878
|
+
"properties": {
|
|
3879
|
+
"backorderIds": {
|
|
3880
|
+
"type": "array",
|
|
3881
|
+
"items": {
|
|
3882
|
+
"type": "number"
|
|
3883
|
+
},
|
|
3884
|
+
"minItems": 1,
|
|
3885
|
+
"maxItems": 50,
|
|
3886
|
+
"description": "Array of backorder IDs to cancel"
|
|
3887
|
+
}
|
|
3888
|
+
}
|
|
3889
|
+
}
|
|
3890
|
+
}
|
|
3891
|
+
}
|
|
3892
|
+
},
|
|
3893
|
+
"responses": {
|
|
3894
|
+
"200": {
|
|
3895
|
+
"description": "Backorder cancellation results",
|
|
3896
|
+
"content": {
|
|
3897
|
+
"application/json": {
|
|
3898
|
+
"schema": {
|
|
3899
|
+
"type": "object",
|
|
3900
|
+
"properties": {
|
|
3901
|
+
"results": {
|
|
3902
|
+
"type": "array",
|
|
3903
|
+
"items": {
|
|
3904
|
+
"type": "object",
|
|
3905
|
+
"properties": {
|
|
3906
|
+
"backorderId": {
|
|
3907
|
+
"type": "number"
|
|
3908
|
+
},
|
|
3909
|
+
"domain": {
|
|
3910
|
+
"type": "string"
|
|
3911
|
+
},
|
|
3912
|
+
"success": {
|
|
3913
|
+
"type": "boolean"
|
|
3914
|
+
},
|
|
3915
|
+
"refundAmount": {
|
|
3916
|
+
"type": "number"
|
|
3917
|
+
},
|
|
3918
|
+
"error": {
|
|
3919
|
+
"type": "string"
|
|
3920
|
+
}
|
|
3921
|
+
}
|
|
3922
|
+
}
|
|
3923
|
+
},
|
|
3924
|
+
"successCount": {
|
|
3925
|
+
"type": "number"
|
|
3926
|
+
},
|
|
3927
|
+
"failureCount": {
|
|
3928
|
+
"type": "number"
|
|
3929
|
+
},
|
|
3930
|
+
"message": {
|
|
3931
|
+
"type": "string"
|
|
3932
|
+
}
|
|
3933
|
+
}
|
|
3934
|
+
}
|
|
3935
|
+
}
|
|
3936
|
+
}
|
|
3937
|
+
},
|
|
3938
|
+
"401": {
|
|
3939
|
+
"description": "Authentication required"
|
|
3940
|
+
}
|
|
3941
|
+
}
|
|
3942
|
+
}
|
|
3943
|
+
},
|
|
3944
|
+
"/mcp/v1/actions/ud_backorders_list": {
|
|
3945
|
+
"post": {
|
|
3946
|
+
"operationId": "backordersList",
|
|
3947
|
+
"tags": [
|
|
3948
|
+
"Backorders"
|
|
3949
|
+
],
|
|
3950
|
+
"summary": "List user's backorders",
|
|
3951
|
+
"description": "List the authenticated user's domain backorders with optional status filtering, domain search, and pagination. Status normalization is applied automatically.",
|
|
3952
|
+
"security": [
|
|
3953
|
+
{
|
|
3954
|
+
"bearerAuth": []
|
|
3955
|
+
}
|
|
3956
|
+
],
|
|
3957
|
+
"requestBody": {
|
|
3958
|
+
"required": true,
|
|
3959
|
+
"content": {
|
|
3960
|
+
"application/json": {
|
|
3961
|
+
"schema": {
|
|
3962
|
+
"type": "object",
|
|
3963
|
+
"properties": {
|
|
3964
|
+
"status": {
|
|
3965
|
+
"type": "array",
|
|
3966
|
+
"items": {
|
|
3967
|
+
"type": "string",
|
|
3968
|
+
"enum": [
|
|
3969
|
+
"pending",
|
|
3970
|
+
"cancelled",
|
|
3971
|
+
"in-progress",
|
|
3972
|
+
"registration-pending",
|
|
3973
|
+
"completed-success",
|
|
3974
|
+
"completed-not-available",
|
|
3975
|
+
"completed-payment-failed",
|
|
3976
|
+
"completed-user-contact-invalid",
|
|
3977
|
+
"failed"
|
|
3978
|
+
]
|
|
3979
|
+
},
|
|
3980
|
+
"description": "Filter by backorder status"
|
|
3981
|
+
},
|
|
3982
|
+
"query": {
|
|
3983
|
+
"type": "string",
|
|
3984
|
+
"maxLength": 253,
|
|
3985
|
+
"description": "Search by domain name (partial match)"
|
|
3986
|
+
},
|
|
3987
|
+
"offset": {
|
|
3988
|
+
"type": "number",
|
|
3989
|
+
"minimum": 0,
|
|
3990
|
+
"description": "Pagination offset (default: 0)"
|
|
3991
|
+
},
|
|
3992
|
+
"limit": {
|
|
3993
|
+
"type": "number",
|
|
3994
|
+
"minimum": 1,
|
|
3995
|
+
"maximum": 100,
|
|
3996
|
+
"description": "Items per page (1-100, default: 20)"
|
|
3997
|
+
}
|
|
3998
|
+
}
|
|
3999
|
+
}
|
|
4000
|
+
}
|
|
4001
|
+
}
|
|
4002
|
+
},
|
|
4003
|
+
"responses": {
|
|
4004
|
+
"200": {
|
|
4005
|
+
"description": "List of backorders with pagination",
|
|
4006
|
+
"content": {
|
|
4007
|
+
"application/json": {
|
|
4008
|
+
"schema": {
|
|
4009
|
+
"type": "object",
|
|
4010
|
+
"properties": {
|
|
4011
|
+
"backorders": {
|
|
4012
|
+
"type": "array",
|
|
4013
|
+
"items": {
|
|
4014
|
+
"type": "object",
|
|
4015
|
+
"properties": {
|
|
4016
|
+
"backorderId": {
|
|
4017
|
+
"type": "number"
|
|
4018
|
+
},
|
|
4019
|
+
"domain": {
|
|
4020
|
+
"type": "string"
|
|
4021
|
+
},
|
|
4022
|
+
"status": {
|
|
4023
|
+
"type": "string"
|
|
4024
|
+
},
|
|
4025
|
+
"price": {
|
|
4026
|
+
"type": "number"
|
|
4027
|
+
},
|
|
4028
|
+
"serviceFee": {
|
|
4029
|
+
"type": "number"
|
|
4030
|
+
},
|
|
4031
|
+
"availableAfter": {
|
|
4032
|
+
"type": "number"
|
|
4033
|
+
},
|
|
4034
|
+
"createdAt": {
|
|
4035
|
+
"type": "number"
|
|
4036
|
+
},
|
|
4037
|
+
"updatedAt": {
|
|
4038
|
+
"type": "number"
|
|
4039
|
+
}
|
|
4040
|
+
}
|
|
4041
|
+
}
|
|
4042
|
+
},
|
|
4043
|
+
"pagination": {
|
|
4044
|
+
"type": "object",
|
|
4045
|
+
"properties": {
|
|
4046
|
+
"total": {
|
|
4047
|
+
"type": "number"
|
|
4048
|
+
},
|
|
4049
|
+
"count": {
|
|
4050
|
+
"type": "number"
|
|
4051
|
+
},
|
|
4052
|
+
"offset": {
|
|
4053
|
+
"type": "number"
|
|
4054
|
+
},
|
|
4055
|
+
"limit": {
|
|
4056
|
+
"type": "number"
|
|
4057
|
+
},
|
|
4058
|
+
"hasMore": {
|
|
4059
|
+
"type": "boolean"
|
|
4060
|
+
},
|
|
4061
|
+
"nextOffset": {
|
|
4062
|
+
"type": "number",
|
|
4063
|
+
"nullable": true
|
|
4064
|
+
}
|
|
4065
|
+
}
|
|
4066
|
+
}
|
|
4067
|
+
}
|
|
4068
|
+
}
|
|
4069
|
+
}
|
|
4070
|
+
}
|
|
4071
|
+
},
|
|
4072
|
+
"401": {
|
|
4073
|
+
"description": "Authentication required"
|
|
4074
|
+
}
|
|
4075
|
+
}
|
|
4076
|
+
}
|
|
4077
|
+
},
|
|
4078
|
+
"/mcp/v1/actions/ud_expireds_list": {
|
|
4079
|
+
"post": {
|
|
4080
|
+
"operationId": "expiredsList",
|
|
4081
|
+
"tags": [
|
|
4082
|
+
"Backorders"
|
|
4083
|
+
],
|
|
4084
|
+
"summary": "Browse the expireds/pending-delete domain marketplace",
|
|
4085
|
+
"description": "List domains that are approaching expiration or have recently dropped and are available for backorder registration. Supports filtering by status, TLD, label length, backorder count, and watchlist count.",
|
|
4086
|
+
"security": [
|
|
4087
|
+
{
|
|
4088
|
+
"bearerAuth": []
|
|
4089
|
+
}
|
|
4090
|
+
],
|
|
4091
|
+
"requestBody": {
|
|
4092
|
+
"required": true,
|
|
4093
|
+
"content": {
|
|
4094
|
+
"application/json": {
|
|
4095
|
+
"schema": {
|
|
4096
|
+
"type": "object",
|
|
4097
|
+
"properties": {
|
|
4098
|
+
"query": {
|
|
4099
|
+
"type": "string",
|
|
4100
|
+
"maxLength": 253,
|
|
4101
|
+
"description": "Search by domain name (exact match if contains dot) or label substring"
|
|
4102
|
+
},
|
|
4103
|
+
"status": {
|
|
4104
|
+
"type": "string",
|
|
4105
|
+
"enum": [
|
|
4106
|
+
"COMING_SOON",
|
|
4107
|
+
"AVAILABLE_BACKORDER"
|
|
4108
|
+
],
|
|
4109
|
+
"description": "Filter by drop status: \"COMING_SOON\" (not yet dropped) or \"AVAILABLE_BACKORDER\" (already dropped)"
|
|
4110
|
+
},
|
|
4111
|
+
"tlds": {
|
|
4112
|
+
"type": "array",
|
|
4113
|
+
"items": {
|
|
4114
|
+
"type": "string"
|
|
4115
|
+
},
|
|
4116
|
+
"description": "Filter by TLD extensions (e.g., [\"com\", \"net\"])"
|
|
4117
|
+
},
|
|
4118
|
+
"sortBy": {
|
|
4119
|
+
"type": "string",
|
|
4120
|
+
"enum": [
|
|
4121
|
+
"name",
|
|
4122
|
+
"deletionAt",
|
|
4123
|
+
"labelLength",
|
|
4124
|
+
"watchlistCount",
|
|
4125
|
+
"backorderCount"
|
|
4126
|
+
],
|
|
4127
|
+
"description": "Sort field (default: \"deletionAt\")"
|
|
4128
|
+
},
|
|
4129
|
+
"sortDirection": {
|
|
4130
|
+
"type": "string",
|
|
4131
|
+
"enum": [
|
|
4132
|
+
"ASC",
|
|
4133
|
+
"DESC"
|
|
4134
|
+
],
|
|
4135
|
+
"description": "Sort direction (default: \"ASC\")"
|
|
4136
|
+
},
|
|
4137
|
+
"lengthRange": {
|
|
4138
|
+
"type": "array",
|
|
4139
|
+
"items": {
|
|
4140
|
+
"type": "number",
|
|
4141
|
+
"minimum": 0
|
|
4142
|
+
},
|
|
4143
|
+
"minItems": 2,
|
|
4144
|
+
"maxItems": 2,
|
|
4145
|
+
"description": "Filter by label length range [min, max]. Use max=0 for no upper bound."
|
|
4146
|
+
},
|
|
4147
|
+
"bidsRange": {
|
|
4148
|
+
"type": "array",
|
|
4149
|
+
"items": {
|
|
4150
|
+
"type": "number",
|
|
4151
|
+
"minimum": 0
|
|
4152
|
+
},
|
|
4153
|
+
"minItems": 2,
|
|
4154
|
+
"maxItems": 2,
|
|
4155
|
+
"description": "Filter by backorder count range [min, max]. Use max=0 for no upper bound."
|
|
4156
|
+
},
|
|
4157
|
+
"watchlistRange": {
|
|
4158
|
+
"type": "array",
|
|
4159
|
+
"items": {
|
|
4160
|
+
"type": "number",
|
|
4161
|
+
"minimum": 0
|
|
4162
|
+
},
|
|
4163
|
+
"minItems": 2,
|
|
4164
|
+
"maxItems": 2,
|
|
4165
|
+
"description": "Filter by watchlist count range [min, max]. Use max=0 for no upper bound."
|
|
4166
|
+
},
|
|
4167
|
+
"offset": {
|
|
4168
|
+
"type": "number",
|
|
4169
|
+
"minimum": 0,
|
|
4170
|
+
"description": "Number of items to skip for pagination (default: 0)"
|
|
4171
|
+
},
|
|
4172
|
+
"limit": {
|
|
4173
|
+
"type": "number",
|
|
4174
|
+
"minimum": 1,
|
|
4175
|
+
"maximum": 500,
|
|
4176
|
+
"description": "Maximum number of items to return (1-500, default: 50)"
|
|
4177
|
+
}
|
|
4178
|
+
}
|
|
4179
|
+
}
|
|
4180
|
+
}
|
|
4181
|
+
}
|
|
4182
|
+
},
|
|
4183
|
+
"responses": {
|
|
4184
|
+
"200": {
|
|
4185
|
+
"description": "List of expiring/dropped domains",
|
|
4186
|
+
"content": {
|
|
4187
|
+
"application/json": {
|
|
4188
|
+
"schema": {
|
|
4189
|
+
"type": "object",
|
|
4190
|
+
"properties": {
|
|
4191
|
+
"domains": {
|
|
4192
|
+
"type": "array",
|
|
4193
|
+
"items": {
|
|
4194
|
+
"type": "object",
|
|
4195
|
+
"properties": {
|
|
4196
|
+
"name": {
|
|
4197
|
+
"type": "string",
|
|
4198
|
+
"description": "Full domain name"
|
|
4199
|
+
},
|
|
4200
|
+
"deletionTimestamp": {
|
|
4201
|
+
"type": "number",
|
|
4202
|
+
"description": "Unix timestamp in milliseconds when the domain drops/dropped"
|
|
4203
|
+
},
|
|
4204
|
+
"status": {
|
|
4205
|
+
"type": "string",
|
|
4206
|
+
"enum": [
|
|
4207
|
+
"COMING_SOON",
|
|
4208
|
+
"AVAILABLE_BACKORDER"
|
|
4209
|
+
]
|
|
4210
|
+
},
|
|
4211
|
+
"labelLength": {
|
|
4212
|
+
"type": "number",
|
|
4213
|
+
"description": "Length of the domain label"
|
|
4214
|
+
},
|
|
4215
|
+
"watchlistCount": {
|
|
4216
|
+
"type": "number",
|
|
4217
|
+
"description": "Number of users watching this domain"
|
|
4218
|
+
},
|
|
4219
|
+
"backorderCount": {
|
|
4220
|
+
"type": "number",
|
|
4221
|
+
"description": "Number of active backorders"
|
|
4222
|
+
}
|
|
4223
|
+
}
|
|
4224
|
+
}
|
|
4225
|
+
},
|
|
4226
|
+
"pagination": {
|
|
4227
|
+
"type": "object",
|
|
4228
|
+
"properties": {
|
|
4229
|
+
"total": {
|
|
4230
|
+
"type": "number"
|
|
4231
|
+
},
|
|
4232
|
+
"count": {
|
|
4233
|
+
"type": "number"
|
|
4234
|
+
},
|
|
4235
|
+
"offset": {
|
|
4236
|
+
"type": "number"
|
|
4237
|
+
},
|
|
4238
|
+
"limit": {
|
|
4239
|
+
"type": "number"
|
|
4240
|
+
},
|
|
4241
|
+
"hasMore": {
|
|
4242
|
+
"type": "boolean"
|
|
4243
|
+
},
|
|
4244
|
+
"nextOffset": {
|
|
4245
|
+
"type": "number"
|
|
4246
|
+
}
|
|
4247
|
+
}
|
|
4248
|
+
},
|
|
4249
|
+
"truncated": {
|
|
4250
|
+
"type": "boolean",
|
|
4251
|
+
"description": "Whether the response was truncated to fit within size limits"
|
|
4252
|
+
},
|
|
4253
|
+
"truncationMessage": {
|
|
4254
|
+
"type": "string",
|
|
4255
|
+
"description": "Message indicating how many results were truncated"
|
|
4256
|
+
}
|
|
4257
|
+
}
|
|
4258
|
+
}
|
|
4259
|
+
}
|
|
4260
|
+
}
|
|
4261
|
+
},
|
|
4262
|
+
"401": {
|
|
4263
|
+
"description": "Authentication required"
|
|
4264
|
+
}
|
|
4265
|
+
}
|
|
4266
|
+
}
|
|
4267
|
+
},
|
|
4268
|
+
"/mcp/v1/actions/ud_authenticated_url_get": {
|
|
4269
|
+
"post": {
|
|
4270
|
+
"operationId": "authenticatedUrlGet",
|
|
4271
|
+
"tags": [
|
|
4272
|
+
"Session"
|
|
4273
|
+
],
|
|
4274
|
+
"summary": "Generate an authenticated URL for browser sign-in",
|
|
4275
|
+
"description": "Creates a one-time URL that automatically signs the user in and redirects to the specified page. Use this whenever the user needs to complete an action in the browser (e.g., adding a payment method, managing account settings). The URL expires after 60 seconds and is single-use.",
|
|
4276
|
+
"security": [
|
|
4277
|
+
{
|
|
4278
|
+
"bearerAuth": []
|
|
4279
|
+
}
|
|
4280
|
+
],
|
|
4281
|
+
"requestBody": {
|
|
4282
|
+
"required": true,
|
|
4283
|
+
"content": {
|
|
4284
|
+
"application/json": {
|
|
4285
|
+
"schema": {
|
|
4286
|
+
"type": "object",
|
|
4287
|
+
"required": [
|
|
4288
|
+
"path"
|
|
4289
|
+
],
|
|
4290
|
+
"properties": {
|
|
4291
|
+
"path": {
|
|
4292
|
+
"type": "string",
|
|
4293
|
+
"pattern": "^/",
|
|
4294
|
+
"minLength": 1,
|
|
4295
|
+
"description": "Page path to open in the browser, e.g. \"/account/payments/card\""
|
|
4296
|
+
}
|
|
4297
|
+
}
|
|
4298
|
+
}
|
|
4299
|
+
}
|
|
4300
|
+
}
|
|
4301
|
+
},
|
|
4302
|
+
"responses": {
|
|
4303
|
+
"200": {
|
|
4304
|
+
"description": "Authenticated URL generated",
|
|
4305
|
+
"content": {
|
|
4306
|
+
"application/json": {
|
|
4307
|
+
"schema": {
|
|
4308
|
+
"type": "object",
|
|
4309
|
+
"properties": {
|
|
4310
|
+
"url": {
|
|
4311
|
+
"type": "string",
|
|
4312
|
+
"description": "One-time authenticated URL (valid for 60 seconds)"
|
|
4313
|
+
},
|
|
4314
|
+
"expiresIn": {
|
|
4315
|
+
"type": "number",
|
|
4316
|
+
"description": "Seconds until the URL expires"
|
|
4317
|
+
},
|
|
4318
|
+
"instructions": {
|
|
4319
|
+
"type": "string",
|
|
4320
|
+
"description": "Guidance for the user"
|
|
4321
|
+
}
|
|
4322
|
+
}
|
|
4323
|
+
}
|
|
4324
|
+
}
|
|
4325
|
+
}
|
|
4326
|
+
},
|
|
4327
|
+
"401": {
|
|
4328
|
+
"description": "Authentication required"
|
|
4329
|
+
}
|
|
4330
|
+
}
|
|
4331
|
+
}
|
|
4332
|
+
}
|
|
4333
|
+
},
|
|
4334
|
+
"components": {
|
|
4335
|
+
"securitySchemes": {
|
|
4336
|
+
"bearerAuth": {
|
|
4337
|
+
"type": "http",
|
|
4338
|
+
"scheme": "bearer",
|
|
4339
|
+
"description": "API key for authenticated operations. Obtain from your Unstoppable Domains account settings."
|
|
4340
|
+
}
|
|
4341
|
+
},
|
|
4342
|
+
"schemas": {
|
|
4343
|
+
"SearchDomainsResponse": {
|
|
4344
|
+
"type": "object",
|
|
4345
|
+
"properties": {
|
|
4346
|
+
"searchQuery": {
|
|
4347
|
+
"type": "string",
|
|
4348
|
+
"description": "Sanitized search term (present for single query requests)"
|
|
4349
|
+
},
|
|
4350
|
+
"searchQueries": {
|
|
4351
|
+
"type": "array",
|
|
4352
|
+
"items": {
|
|
4353
|
+
"type": "object",
|
|
4354
|
+
"properties": {
|
|
4355
|
+
"query": {
|
|
4356
|
+
"type": "string"
|
|
4357
|
+
},
|
|
4358
|
+
"invalidReason": {
|
|
4359
|
+
"type": [
|
|
4360
|
+
"string",
|
|
4361
|
+
"null"
|
|
4362
|
+
]
|
|
4363
|
+
},
|
|
4364
|
+
"invalidCharacters": {
|
|
4365
|
+
"type": "array",
|
|
4366
|
+
"items": {
|
|
4367
|
+
"type": "string"
|
|
4368
|
+
}
|
|
4369
|
+
}
|
|
4370
|
+
}
|
|
4371
|
+
},
|
|
4372
|
+
"description": "Array of search queries with metadata (present for multiple query requests)"
|
|
4373
|
+
},
|
|
4374
|
+
"searchedTlds": {
|
|
4375
|
+
"type": "array",
|
|
4376
|
+
"items": {
|
|
4377
|
+
"type": "string"
|
|
4378
|
+
},
|
|
4379
|
+
"description": "TLDs that were searched"
|
|
4380
|
+
},
|
|
4381
|
+
"invalidReason": {
|
|
4382
|
+
"type": [
|
|
4383
|
+
"string",
|
|
4384
|
+
"null"
|
|
4385
|
+
],
|
|
4386
|
+
"description": "Validation error reason (present for single query requests)"
|
|
4387
|
+
},
|
|
4388
|
+
"invalidCharacters": {
|
|
4389
|
+
"type": [
|
|
4390
|
+
"array",
|
|
4391
|
+
"null"
|
|
4392
|
+
],
|
|
4393
|
+
"items": {
|
|
4394
|
+
"type": "string"
|
|
4395
|
+
},
|
|
4396
|
+
"description": "Invalid characters found (present for single query requests)"
|
|
4397
|
+
},
|
|
4398
|
+
"results": {
|
|
4399
|
+
"type": "array",
|
|
4400
|
+
"items": {
|
|
4401
|
+
"$ref": "#/components/schemas/DomainResult"
|
|
4402
|
+
}
|
|
4403
|
+
},
|
|
4404
|
+
"pagination": {
|
|
4405
|
+
"type": "object",
|
|
4406
|
+
"properties": {
|
|
4407
|
+
"total": {
|
|
4408
|
+
"type": "number",
|
|
4409
|
+
"description": "Total number of results"
|
|
4410
|
+
},
|
|
4411
|
+
"count": {
|
|
4412
|
+
"type": "number",
|
|
4413
|
+
"description": "Number of results in this response"
|
|
4414
|
+
},
|
|
4415
|
+
"offset": {
|
|
4416
|
+
"type": "number",
|
|
4417
|
+
"description": "Current offset"
|
|
4418
|
+
},
|
|
4419
|
+
"limit": {
|
|
4420
|
+
"type": "number",
|
|
4421
|
+
"description": "Max results per page"
|
|
4422
|
+
},
|
|
4423
|
+
"hasMore": {
|
|
4424
|
+
"type": "boolean",
|
|
4425
|
+
"description": "Whether more results are available"
|
|
4426
|
+
},
|
|
4427
|
+
"nextOffset": {
|
|
4428
|
+
"type": [
|
|
4429
|
+
"number",
|
|
4430
|
+
"null"
|
|
4431
|
+
],
|
|
4432
|
+
"description": "Offset for next page, null if no more pages"
|
|
4433
|
+
}
|
|
4434
|
+
}
|
|
4435
|
+
},
|
|
4436
|
+
"truncated": {
|
|
4437
|
+
"type": "boolean",
|
|
4438
|
+
"description": "Whether results were truncated due to size limits"
|
|
4439
|
+
},
|
|
4440
|
+
"truncationMessage": {
|
|
4441
|
+
"type": "string",
|
|
4442
|
+
"description": "Message explaining truncation"
|
|
3764
4443
|
}
|
|
3765
4444
|
}
|
|
3766
4445
|
},
|
|
@@ -4390,6 +5069,15 @@
|
|
|
4390
5069
|
}
|
|
4391
5070
|
}
|
|
4392
5071
|
},
|
|
5072
|
+
"aiCredits": {
|
|
5073
|
+
"type": "object",
|
|
5074
|
+
"properties": {
|
|
5075
|
+
"balance": {
|
|
5076
|
+
"type": "number",
|
|
5077
|
+
"description": "AI credits remaining (1 credit = 1 landing page)"
|
|
5078
|
+
}
|
|
5079
|
+
}
|
|
5080
|
+
},
|
|
4393
5081
|
"summary": {
|
|
4394
5082
|
"type": "object",
|
|
4395
5083
|
"properties": {
|
|
@@ -4419,6 +5107,68 @@
|
|
|
4419
5107
|
}
|
|
4420
5108
|
}
|
|
4421
5109
|
},
|
|
5110
|
+
"AiCreditsResponse": {
|
|
5111
|
+
"type": "object",
|
|
5112
|
+
"properties": {
|
|
5113
|
+
"balance": {
|
|
5114
|
+
"type": "number",
|
|
5115
|
+
"description": "Current AI credit balance"
|
|
5116
|
+
},
|
|
5117
|
+
"tiers": {
|
|
5118
|
+
"type": "array",
|
|
5119
|
+
"items": {
|
|
5120
|
+
"type": "object",
|
|
5121
|
+
"properties": {
|
|
5122
|
+
"size": {
|
|
5123
|
+
"type": "number",
|
|
5124
|
+
"description": "Number of credits in the pack"
|
|
5125
|
+
},
|
|
5126
|
+
"priceInCents": {
|
|
5127
|
+
"type": "number",
|
|
5128
|
+
"description": "Price in cents"
|
|
5129
|
+
},
|
|
5130
|
+
"priceFormatted": {
|
|
5131
|
+
"type": "string",
|
|
5132
|
+
"description": "Price as formatted string"
|
|
5133
|
+
},
|
|
5134
|
+
"productCode": {
|
|
5135
|
+
"type": "string",
|
|
5136
|
+
"description": "Product code for purchasing"
|
|
5137
|
+
},
|
|
5138
|
+
"pricePerCredit": {
|
|
5139
|
+
"type": "string",
|
|
5140
|
+
"description": "Cost per credit as formatted string"
|
|
5141
|
+
}
|
|
5142
|
+
}
|
|
5143
|
+
}
|
|
5144
|
+
},
|
|
5145
|
+
"hint": {
|
|
5146
|
+
"type": "string",
|
|
5147
|
+
"description": "Usage guidance"
|
|
5148
|
+
}
|
|
5149
|
+
}
|
|
5150
|
+
},
|
|
5151
|
+
"AddAiCreditsToCartResponse": {
|
|
5152
|
+
"type": "object",
|
|
5153
|
+
"properties": {
|
|
5154
|
+
"productCode": {
|
|
5155
|
+
"type": "string",
|
|
5156
|
+
"description": "Product code added to cart"
|
|
5157
|
+
},
|
|
5158
|
+
"credits": {
|
|
5159
|
+
"type": "number",
|
|
5160
|
+
"description": "Number of credits in the pack"
|
|
5161
|
+
},
|
|
5162
|
+
"price": {
|
|
5163
|
+
"type": "number",
|
|
5164
|
+
"description": "Price in cents"
|
|
5165
|
+
},
|
|
5166
|
+
"priceFormatted": {
|
|
5167
|
+
"type": "string",
|
|
5168
|
+
"description": "Price as formatted string"
|
|
5169
|
+
}
|
|
5170
|
+
}
|
|
5171
|
+
},
|
|
4422
5172
|
"CheckoutResponse": {
|
|
4423
5173
|
"type": "object",
|
|
4424
5174
|
"properties": {
|
|
@@ -4646,32 +5396,32 @@
|
|
|
4646
5396
|
"pagination": {
|
|
4647
5397
|
"type": "object",
|
|
4648
5398
|
"properties": {
|
|
4649
|
-
"
|
|
5399
|
+
"page": {
|
|
4650
5400
|
"type": "number",
|
|
4651
|
-
"description": "
|
|
5401
|
+
"description": "Current page number"
|
|
4652
5402
|
},
|
|
4653
|
-
"
|
|
5403
|
+
"pageSize": {
|
|
4654
5404
|
"type": "number",
|
|
4655
|
-
"description": "
|
|
5405
|
+
"description": "Items per page"
|
|
4656
5406
|
},
|
|
4657
|
-
"
|
|
5407
|
+
"totalPages": {
|
|
4658
5408
|
"type": "number",
|
|
4659
|
-
"description": "
|
|
5409
|
+
"description": "Total number of pages"
|
|
4660
5410
|
},
|
|
4661
|
-
"
|
|
5411
|
+
"total": {
|
|
4662
5412
|
"type": "number",
|
|
4663
|
-
"description": "
|
|
5413
|
+
"description": "Total number of domains"
|
|
4664
5414
|
},
|
|
4665
5415
|
"hasMore": {
|
|
4666
5416
|
"type": "boolean",
|
|
4667
|
-
"description": "Whether more
|
|
5417
|
+
"description": "Whether more pages exist"
|
|
4668
5418
|
},
|
|
4669
|
-
"
|
|
5419
|
+
"nextPage": {
|
|
4670
5420
|
"type": [
|
|
4671
5421
|
"number",
|
|
4672
5422
|
"null"
|
|
4673
5423
|
],
|
|
4674
|
-
"description": "
|
|
5424
|
+
"description": "Next page number if more results exist, null otherwise"
|
|
4675
5425
|
}
|
|
4676
5426
|
}
|
|
4677
5427
|
},
|
|
@@ -5108,7 +5858,7 @@
|
|
|
5108
5858
|
},
|
|
5109
5859
|
"transferStatus": {
|
|
5110
5860
|
"type": "string",
|
|
5111
|
-
"description": "Domain transfer status:\n
|
|
5861
|
+
"description": "Domain transfer status:\n• \"none\" - No active transfer\n• \"pending\" - Transfer in progress"
|
|
5112
5862
|
},
|
|
5113
5863
|
"isExternallyOwned": {
|
|
5114
5864
|
"type": "boolean",
|
|
@@ -5154,7 +5904,7 @@
|
|
|
5154
5904
|
},
|
|
5155
5905
|
"status": {
|
|
5156
5906
|
"type": "string",
|
|
5157
|
-
"description": "Listing status:\n
|
|
5907
|
+
"description": "Listing status:\n• \"open\" - Live on marketplace, ready for purchase (user-custodied domains)\n• \"open-not-signed\" - Live on marketplace, ready for purchase (UD-custodied domains, no user action needed)\n• \"open-on-request\" - Accepting offers only, no fixed price\n• \"draft\" - Not yet published\n• \"waiting-for-approval\" - Pending wallet signature from owner\n• \"pending-admin-approval\" - Under review (high-value listings)\n• \"pending\" - Sale in progress\n• \"canceled\" - Listing was canceled\nNote: Both \"open\" and \"open-not-signed\" mean the listing is active and purchasable."
|
|
5158
5908
|
},
|
|
5159
5909
|
"createdAt": {
|
|
5160
5910
|
"type": "string",
|
|
@@ -5179,7 +5929,7 @@
|
|
|
5179
5929
|
"properties": {
|
|
5180
5930
|
"status": {
|
|
5181
5931
|
"type": "string",
|
|
5182
|
-
"description": "Auto-renewal subscription status:\n
|
|
5932
|
+
"description": "Auto-renewal subscription status:\n• \"active\" - Subscription active, will auto-renew\n• \"pending\" - Payment collected, waiting for domain registration\n• \"update_required\" - Payment method needs updating (card expired/declined)\n• \"expired\" - Subscription expired, domain renewal overdue\n• \"cancelled\" - Subscription cancelled, will not auto-renew"
|
|
5183
5933
|
},
|
|
5184
5934
|
"expiresAt": {
|
|
5185
5935
|
"type": [
|
|
@@ -5363,32 +6113,20 @@
|
|
|
5363
6113
|
"pagination": {
|
|
5364
6114
|
"type": "object",
|
|
5365
6115
|
"properties": {
|
|
5366
|
-
"
|
|
5367
|
-
"type": "number"
|
|
5368
|
-
"description": "Total number of matching items"
|
|
6116
|
+
"page": {
|
|
6117
|
+
"type": "number"
|
|
5369
6118
|
},
|
|
5370
|
-
"
|
|
5371
|
-
"type": "number"
|
|
5372
|
-
"description": "Number of items returned in this response"
|
|
6119
|
+
"pageSize": {
|
|
6120
|
+
"type": "number"
|
|
5373
6121
|
},
|
|
5374
|
-
"
|
|
5375
|
-
"type": "number"
|
|
5376
|
-
"description": "Current offset"
|
|
6122
|
+
"totalPages": {
|
|
6123
|
+
"type": "number"
|
|
5377
6124
|
},
|
|
5378
|
-
"
|
|
5379
|
-
"type": "number"
|
|
5380
|
-
"description": "Maximum items per response"
|
|
6125
|
+
"total": {
|
|
6126
|
+
"type": "number"
|
|
5381
6127
|
},
|
|
5382
6128
|
"hasMore": {
|
|
5383
|
-
"type": "boolean"
|
|
5384
|
-
"description": "Whether more results are available"
|
|
5385
|
-
},
|
|
5386
|
-
"nextOffset": {
|
|
5387
|
-
"type": [
|
|
5388
|
-
"number",
|
|
5389
|
-
"null"
|
|
5390
|
-
],
|
|
5391
|
-
"description": "Offset for next page, null if no more pages"
|
|
6129
|
+
"type": "boolean"
|
|
5392
6130
|
}
|
|
5393
6131
|
}
|
|
5394
6132
|
},
|
|
@@ -5514,37 +6252,13 @@
|
|
|
5514
6252
|
"type": "number",
|
|
5515
6253
|
"description": "Total number of conversations matching filters"
|
|
5516
6254
|
},
|
|
5517
|
-
"
|
|
5518
|
-
"type": "
|
|
5519
|
-
"
|
|
5520
|
-
|
|
5521
|
-
|
|
5522
|
-
|
|
5523
|
-
|
|
5524
|
-
"count": {
|
|
5525
|
-
"type": "number",
|
|
5526
|
-
"description": "Number of items returned in this response"
|
|
5527
|
-
},
|
|
5528
|
-
"offset": {
|
|
5529
|
-
"type": "number",
|
|
5530
|
-
"description": "Current offset"
|
|
5531
|
-
},
|
|
5532
|
-
"limit": {
|
|
5533
|
-
"type": "number",
|
|
5534
|
-
"description": "Maximum items per response"
|
|
5535
|
-
},
|
|
5536
|
-
"hasMore": {
|
|
5537
|
-
"type": "boolean",
|
|
5538
|
-
"description": "Whether more results are available"
|
|
5539
|
-
},
|
|
5540
|
-
"nextOffset": {
|
|
5541
|
-
"type": [
|
|
5542
|
-
"number",
|
|
5543
|
-
"null"
|
|
5544
|
-
],
|
|
5545
|
-
"description": "Offset for next page, null if no more pages"
|
|
5546
|
-
}
|
|
5547
|
-
}
|
|
6255
|
+
"skip": {
|
|
6256
|
+
"type": "number",
|
|
6257
|
+
"description": "Number of items skipped"
|
|
6258
|
+
},
|
|
6259
|
+
"take": {
|
|
6260
|
+
"type": "number",
|
|
6261
|
+
"description": "Number of items returned"
|
|
5548
6262
|
}
|
|
5549
6263
|
}
|
|
5550
6264
|
},
|