@scrapeatlas/cli 0.2.2 → 0.4.0
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/catalog.json +2633 -408
- package/package.json +1 -1
package/catalog.json
CHANGED
|
@@ -2933,6 +2933,8 @@
|
|
|
2933
2933
|
"type": "string",
|
|
2934
2934
|
"enum": [
|
|
2935
2935
|
"malformed_items_omitted",
|
|
2936
|
+
"items_truncated",
|
|
2937
|
+
"review_offset_limit",
|
|
2936
2938
|
"inventory_unavailable",
|
|
2937
2939
|
"catalog_details_unavailable",
|
|
2938
2940
|
"extended_details_unavailable",
|
|
@@ -3133,6 +3135,8 @@
|
|
|
3133
3135
|
"type": "string",
|
|
3134
3136
|
"enum": [
|
|
3135
3137
|
"malformed_items_omitted",
|
|
3138
|
+
"items_truncated",
|
|
3139
|
+
"review_offset_limit",
|
|
3136
3140
|
"inventory_unavailable",
|
|
3137
3141
|
"catalog_details_unavailable",
|
|
3138
3142
|
"extended_details_unavailable",
|
|
@@ -3234,7 +3238,7 @@
|
|
|
3234
3238
|
"operation": "depopProduct",
|
|
3235
3239
|
"method": "GET",
|
|
3236
3240
|
"path": "/v1/depop/product",
|
|
3237
|
-
"description": "
|
|
3241
|
+
"description": "Retrieve a listing by ID, slug or URL with seller details, prices and fee components, shipping promotions and confidence, image formats, size availability, material and style attributes, seller reviews and activity. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
3238
3242
|
"inputSchema": {
|
|
3239
3243
|
"type": "object",
|
|
3240
3244
|
"properties": {
|
|
@@ -3245,7 +3249,7 @@
|
|
|
3245
3249
|
},
|
|
3246
3250
|
"slug": {
|
|
3247
3251
|
"type": "string",
|
|
3248
|
-
"pattern": "^[a-z0-
|
|
3252
|
+
"pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$",
|
|
3249
3253
|
"maxLength": 200,
|
|
3250
3254
|
"description": "URL slug from depop.com/products/{slug}/ (lowercase letters, digits and hyphens)."
|
|
3251
3255
|
},
|
|
@@ -3291,6 +3295,8 @@
|
|
|
3291
3295
|
"type": "string",
|
|
3292
3296
|
"enum": [
|
|
3293
3297
|
"malformed_items_omitted",
|
|
3298
|
+
"items_truncated",
|
|
3299
|
+
"review_offset_limit",
|
|
3294
3300
|
"inventory_unavailable",
|
|
3295
3301
|
"catalog_details_unavailable",
|
|
3296
3302
|
"extended_details_unavailable",
|
|
@@ -3353,6 +3359,130 @@
|
|
|
3353
3359
|
"additionalProperties": false
|
|
3354
3360
|
},
|
|
3355
3361
|
"images": { "type": "array", "items": { "type": "string", "format": "uri" } },
|
|
3362
|
+
"imageDetails": {
|
|
3363
|
+
"type": "array",
|
|
3364
|
+
"items": {
|
|
3365
|
+
"type": "object",
|
|
3366
|
+
"properties": {
|
|
3367
|
+
"id": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
3368
|
+
"originalWidth": {
|
|
3369
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
3370
|
+
},
|
|
3371
|
+
"originalHeight": {
|
|
3372
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
3373
|
+
},
|
|
3374
|
+
"isSquare": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
3375
|
+
"formats": {
|
|
3376
|
+
"type": "object",
|
|
3377
|
+
"propertyNames": { "type": "string" },
|
|
3378
|
+
"additionalProperties": {
|
|
3379
|
+
"type": "object",
|
|
3380
|
+
"properties": {
|
|
3381
|
+
"url": { "type": "string", "format": "uri" },
|
|
3382
|
+
"width": {
|
|
3383
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
3384
|
+
},
|
|
3385
|
+
"height": {
|
|
3386
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
3387
|
+
}
|
|
3388
|
+
},
|
|
3389
|
+
"required": ["url", "width", "height"],
|
|
3390
|
+
"additionalProperties": false
|
|
3391
|
+
}
|
|
3392
|
+
}
|
|
3393
|
+
},
|
|
3394
|
+
"required": ["id", "originalWidth", "originalHeight", "isSquare", "formats"],
|
|
3395
|
+
"additionalProperties": false
|
|
3396
|
+
},
|
|
3397
|
+
"maxItems": 20
|
|
3398
|
+
},
|
|
3399
|
+
"priceBreakdown": {
|
|
3400
|
+
"anyOf": [
|
|
3401
|
+
{
|
|
3402
|
+
"type": "object",
|
|
3403
|
+
"properties": {
|
|
3404
|
+
"item": {
|
|
3405
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
3406
|
+
},
|
|
3407
|
+
"buyerFee": {
|
|
3408
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
3409
|
+
},
|
|
3410
|
+
"tax": {
|
|
3411
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
3412
|
+
},
|
|
3413
|
+
"taxType": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
3414
|
+
"shipping": {
|
|
3415
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
3416
|
+
},
|
|
3417
|
+
"totalIncludes": {
|
|
3418
|
+
"type": "object",
|
|
3419
|
+
"properties": {
|
|
3420
|
+
"buyerFee": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
3421
|
+
"shipping": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
3422
|
+
"tax": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
|
|
3423
|
+
},
|
|
3424
|
+
"required": ["buyerFee", "shipping", "tax"],
|
|
3425
|
+
"additionalProperties": false
|
|
3426
|
+
},
|
|
3427
|
+
"headlineIncludes": {
|
|
3428
|
+
"type": "object",
|
|
3429
|
+
"properties": {
|
|
3430
|
+
"buyerFee": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
3431
|
+
"shipping": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
3432
|
+
"tax": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
|
|
3433
|
+
},
|
|
3434
|
+
"required": ["buyerFee", "shipping", "tax"],
|
|
3435
|
+
"additionalProperties": false
|
|
3436
|
+
}
|
|
3437
|
+
},
|
|
3438
|
+
"required": [
|
|
3439
|
+
"item",
|
|
3440
|
+
"buyerFee",
|
|
3441
|
+
"tax",
|
|
3442
|
+
"taxType",
|
|
3443
|
+
"shipping",
|
|
3444
|
+
"totalIncludes",
|
|
3445
|
+
"headlineIncludes"
|
|
3446
|
+
],
|
|
3447
|
+
"additionalProperties": false
|
|
3448
|
+
},
|
|
3449
|
+
{ "type": "null" }
|
|
3450
|
+
]
|
|
3451
|
+
},
|
|
3452
|
+
"originalNationalShippingCost": {
|
|
3453
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
3454
|
+
},
|
|
3455
|
+
"shippingDiscounts": {
|
|
3456
|
+
"anyOf": [
|
|
3457
|
+
{
|
|
3458
|
+
"type": "object",
|
|
3459
|
+
"properties": {
|
|
3460
|
+
"nationalShipping": {
|
|
3461
|
+
"anyOf": [
|
|
3462
|
+
{
|
|
3463
|
+
"type": "object",
|
|
3464
|
+
"properties": {
|
|
3465
|
+
"amount": {
|
|
3466
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
3467
|
+
},
|
|
3468
|
+
"type": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
3469
|
+
},
|
|
3470
|
+
"required": ["amount", "type"],
|
|
3471
|
+
"additionalProperties": false
|
|
3472
|
+
},
|
|
3473
|
+
{ "type": "null" }
|
|
3474
|
+
]
|
|
3475
|
+
}
|
|
3476
|
+
},
|
|
3477
|
+
"required": ["nationalShipping"],
|
|
3478
|
+
"additionalProperties": false
|
|
3479
|
+
},
|
|
3480
|
+
{ "type": "null" }
|
|
3481
|
+
]
|
|
3482
|
+
},
|
|
3483
|
+
"brandSlug": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
3484
|
+
"isKnownBrand": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
3485
|
+
"materials": { "type": "array", "items": { "type": "string" } },
|
|
3356
3486
|
"condition": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
3357
3487
|
"colours": { "type": "array", "items": { "type": "string" } },
|
|
3358
3488
|
"styles": { "type": "array", "items": { "type": "string" } },
|
|
@@ -3381,6 +3511,7 @@
|
|
|
3381
3511
|
"additionalProperties": false
|
|
3382
3512
|
}
|
|
3383
3513
|
},
|
|
3514
|
+
"variantSetId": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
3384
3515
|
"listedQuantity": {
|
|
3385
3516
|
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
3386
3517
|
},
|
|
@@ -3430,8 +3561,8 @@
|
|
|
3430
3561
|
{ "type": "null" }
|
|
3431
3562
|
]
|
|
3432
3563
|
},
|
|
3433
|
-
"variantSetId": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
3434
3564
|
"hasFreeShipping": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
3565
|
+
"shippingConfidence": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
3435
3566
|
"nationalShippingCost": {
|
|
3436
3567
|
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
3437
3568
|
},
|
|
@@ -3515,6 +3646,13 @@
|
|
|
3515
3646
|
"price",
|
|
3516
3647
|
"shipping",
|
|
3517
3648
|
"images",
|
|
3649
|
+
"imageDetails",
|
|
3650
|
+
"priceBreakdown",
|
|
3651
|
+
"originalNationalShippingCost",
|
|
3652
|
+
"shippingDiscounts",
|
|
3653
|
+
"brandSlug",
|
|
3654
|
+
"isKnownBrand",
|
|
3655
|
+
"materials",
|
|
3518
3656
|
"condition",
|
|
3519
3657
|
"colours",
|
|
3520
3658
|
"styles",
|
|
@@ -3524,6 +3662,7 @@
|
|
|
3524
3662
|
"isKids",
|
|
3525
3663
|
"additionalAttributes",
|
|
3526
3664
|
"sizes",
|
|
3665
|
+
"variantSetId",
|
|
3527
3666
|
"listedQuantity",
|
|
3528
3667
|
"location",
|
|
3529
3668
|
"country",
|
|
@@ -3535,8 +3674,8 @@
|
|
|
3535
3674
|
"updatedAt",
|
|
3536
3675
|
"title",
|
|
3537
3676
|
"seller",
|
|
3538
|
-
"variantSetId",
|
|
3539
3677
|
"hasFreeShipping",
|
|
3678
|
+
"shippingConfidence",
|
|
3540
3679
|
"nationalShippingCost",
|
|
3541
3680
|
"internationalShippingCost",
|
|
3542
3681
|
"names",
|
|
@@ -3664,6 +3803,8 @@
|
|
|
3664
3803
|
"type": "string",
|
|
3665
3804
|
"enum": [
|
|
3666
3805
|
"malformed_items_omitted",
|
|
3806
|
+
"items_truncated",
|
|
3807
|
+
"review_offset_limit",
|
|
3667
3808
|
"inventory_unavailable",
|
|
3668
3809
|
"catalog_details_unavailable",
|
|
3669
3810
|
"extended_details_unavailable",
|
|
@@ -3731,6 +3872,24 @@
|
|
|
3731
3872
|
"propertyNames": { "type": "string" },
|
|
3732
3873
|
"additionalProperties": { "type": "integer", "minimum": 0 }
|
|
3733
3874
|
},
|
|
3875
|
+
"categoryBreakdown": {
|
|
3876
|
+
"type": "array",
|
|
3877
|
+
"items": {
|
|
3878
|
+
"type": "object",
|
|
3879
|
+
"properties": {
|
|
3880
|
+
"path": {
|
|
3881
|
+
"type": "array",
|
|
3882
|
+
"items": { "type": "string" },
|
|
3883
|
+
"minItems": 1,
|
|
3884
|
+
"maxItems": 6
|
|
3885
|
+
},
|
|
3886
|
+
"count": { "type": "integer", "minimum": 0 }
|
|
3887
|
+
},
|
|
3888
|
+
"required": ["path", "count"],
|
|
3889
|
+
"additionalProperties": false
|
|
3890
|
+
},
|
|
3891
|
+
"maxItems": 500
|
|
3892
|
+
},
|
|
3734
3893
|
"brands": {
|
|
3735
3894
|
"type": "object",
|
|
3736
3895
|
"propertyNames": { "type": "string" },
|
|
@@ -3755,6 +3914,7 @@
|
|
|
3755
3914
|
"required": [
|
|
3756
3915
|
"total",
|
|
3757
3916
|
"departments",
|
|
3917
|
+
"categoryBreakdown",
|
|
3758
3918
|
"brands",
|
|
3759
3919
|
"colours",
|
|
3760
3920
|
"conditions",
|
|
@@ -3862,7 +4022,7 @@
|
|
|
3862
4022
|
"type": "object",
|
|
3863
4023
|
"properties": {
|
|
3864
4024
|
"id": { "type": "string", "pattern": "^[1-9][0-9]{0,15}$" },
|
|
3865
|
-
"slug": { "type": "string", "pattern": "^[a-z0-
|
|
4025
|
+
"slug": { "type": "string", "pattern": "^[a-z0-9_]+(?:-[a-z0-9_]+)*$", "maxLength": 200 },
|
|
3866
4026
|
"url": { "type": "string", "maxLength": 2048, "x-runtime-refinement": true },
|
|
3867
4027
|
"limit": {
|
|
3868
4028
|
"type": "integer",
|
|
@@ -3913,6 +4073,8 @@
|
|
|
3913
4073
|
"type": "string",
|
|
3914
4074
|
"enum": [
|
|
3915
4075
|
"malformed_items_omitted",
|
|
4076
|
+
"items_truncated",
|
|
4077
|
+
"review_offset_limit",
|
|
3916
4078
|
"inventory_unavailable",
|
|
3917
4079
|
"catalog_details_unavailable",
|
|
3918
4080
|
"extended_details_unavailable",
|
|
@@ -3990,6 +4152,133 @@
|
|
|
3990
4152
|
"additionalProperties": false
|
|
3991
4153
|
},
|
|
3992
4154
|
"images": { "type": "array", "items": { "type": "string", "format": "uri" } },
|
|
4155
|
+
"imageDetails": {
|
|
4156
|
+
"type": "array",
|
|
4157
|
+
"items": {
|
|
4158
|
+
"type": "object",
|
|
4159
|
+
"properties": {
|
|
4160
|
+
"id": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
4161
|
+
"originalWidth": {
|
|
4162
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
4163
|
+
},
|
|
4164
|
+
"originalHeight": {
|
|
4165
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
4166
|
+
},
|
|
4167
|
+
"isSquare": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4168
|
+
"formats": {
|
|
4169
|
+
"type": "object",
|
|
4170
|
+
"propertyNames": { "type": "string" },
|
|
4171
|
+
"additionalProperties": {
|
|
4172
|
+
"type": "object",
|
|
4173
|
+
"properties": {
|
|
4174
|
+
"url": { "type": "string", "format": "uri" },
|
|
4175
|
+
"width": {
|
|
4176
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
4177
|
+
},
|
|
4178
|
+
"height": {
|
|
4179
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
4180
|
+
}
|
|
4181
|
+
},
|
|
4182
|
+
"required": ["url", "width", "height"],
|
|
4183
|
+
"additionalProperties": false
|
|
4184
|
+
}
|
|
4185
|
+
}
|
|
4186
|
+
},
|
|
4187
|
+
"required": ["id", "originalWidth", "originalHeight", "isSquare", "formats"],
|
|
4188
|
+
"additionalProperties": false
|
|
4189
|
+
},
|
|
4190
|
+
"maxItems": 20
|
|
4191
|
+
},
|
|
4192
|
+
"priceBreakdown": {
|
|
4193
|
+
"anyOf": [
|
|
4194
|
+
{
|
|
4195
|
+
"type": "object",
|
|
4196
|
+
"properties": {
|
|
4197
|
+
"item": {
|
|
4198
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
4199
|
+
},
|
|
4200
|
+
"buyerFee": {
|
|
4201
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
4202
|
+
},
|
|
4203
|
+
"tax": {
|
|
4204
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
4205
|
+
},
|
|
4206
|
+
"taxType": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
4207
|
+
"shipping": {
|
|
4208
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
4209
|
+
},
|
|
4210
|
+
"totalIncludes": {
|
|
4211
|
+
"type": "object",
|
|
4212
|
+
"properties": {
|
|
4213
|
+
"buyerFee": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4214
|
+
"shipping": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4215
|
+
"tax": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
|
|
4216
|
+
},
|
|
4217
|
+
"required": ["buyerFee", "shipping", "tax"],
|
|
4218
|
+
"additionalProperties": false
|
|
4219
|
+
},
|
|
4220
|
+
"headlineIncludes": {
|
|
4221
|
+
"type": "object",
|
|
4222
|
+
"properties": {
|
|
4223
|
+
"buyerFee": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4224
|
+
"shipping": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4225
|
+
"tax": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
|
|
4226
|
+
},
|
|
4227
|
+
"required": ["buyerFee", "shipping", "tax"],
|
|
4228
|
+
"additionalProperties": false
|
|
4229
|
+
}
|
|
4230
|
+
},
|
|
4231
|
+
"required": [
|
|
4232
|
+
"item",
|
|
4233
|
+
"buyerFee",
|
|
4234
|
+
"tax",
|
|
4235
|
+
"taxType",
|
|
4236
|
+
"shipping",
|
|
4237
|
+
"totalIncludes",
|
|
4238
|
+
"headlineIncludes"
|
|
4239
|
+
],
|
|
4240
|
+
"additionalProperties": false
|
|
4241
|
+
},
|
|
4242
|
+
{ "type": "null" }
|
|
4243
|
+
]
|
|
4244
|
+
},
|
|
4245
|
+
"originalNationalShippingCost": {
|
|
4246
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
4247
|
+
},
|
|
4248
|
+
"shippingDiscounts": {
|
|
4249
|
+
"anyOf": [
|
|
4250
|
+
{
|
|
4251
|
+
"type": "object",
|
|
4252
|
+
"properties": {
|
|
4253
|
+
"nationalShipping": {
|
|
4254
|
+
"anyOf": [
|
|
4255
|
+
{
|
|
4256
|
+
"type": "object",
|
|
4257
|
+
"properties": {
|
|
4258
|
+
"amount": {
|
|
4259
|
+
"anyOf": [
|
|
4260
|
+
{ "type": "number", "minimum": 0 },
|
|
4261
|
+
{ "type": "null" }
|
|
4262
|
+
]
|
|
4263
|
+
},
|
|
4264
|
+
"type": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
4265
|
+
},
|
|
4266
|
+
"required": ["amount", "type"],
|
|
4267
|
+
"additionalProperties": false
|
|
4268
|
+
},
|
|
4269
|
+
{ "type": "null" }
|
|
4270
|
+
]
|
|
4271
|
+
}
|
|
4272
|
+
},
|
|
4273
|
+
"required": ["nationalShipping"],
|
|
4274
|
+
"additionalProperties": false
|
|
4275
|
+
},
|
|
4276
|
+
{ "type": "null" }
|
|
4277
|
+
]
|
|
4278
|
+
},
|
|
4279
|
+
"brandSlug": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
4280
|
+
"isKnownBrand": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4281
|
+
"materials": { "type": "array", "items": { "type": "string" } },
|
|
3993
4282
|
"condition": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
3994
4283
|
"colours": { "type": "array", "items": { "type": "string" } },
|
|
3995
4284
|
"styles": { "type": "array", "items": { "type": "string" } },
|
|
@@ -4018,6 +4307,7 @@
|
|
|
4018
4307
|
"additionalProperties": false
|
|
4019
4308
|
}
|
|
4020
4309
|
},
|
|
4310
|
+
"variantSetId": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
4021
4311
|
"listedQuantity": {
|
|
4022
4312
|
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
4023
4313
|
},
|
|
@@ -4054,6 +4344,13 @@
|
|
|
4054
4344
|
"price",
|
|
4055
4345
|
"shipping",
|
|
4056
4346
|
"images",
|
|
4347
|
+
"imageDetails",
|
|
4348
|
+
"priceBreakdown",
|
|
4349
|
+
"originalNationalShippingCost",
|
|
4350
|
+
"shippingDiscounts",
|
|
4351
|
+
"brandSlug",
|
|
4352
|
+
"isKnownBrand",
|
|
4353
|
+
"materials",
|
|
4057
4354
|
"condition",
|
|
4058
4355
|
"colours",
|
|
4059
4356
|
"styles",
|
|
@@ -4063,6 +4360,7 @@
|
|
|
4063
4360
|
"isKids",
|
|
4064
4361
|
"additionalAttributes",
|
|
4065
4362
|
"sizes",
|
|
4363
|
+
"variantSetId",
|
|
4066
4364
|
"listedQuantity",
|
|
4067
4365
|
"location",
|
|
4068
4366
|
"country",
|
|
@@ -4213,6 +4511,8 @@
|
|
|
4213
4511
|
"type": "string",
|
|
4214
4512
|
"enum": [
|
|
4215
4513
|
"malformed_items_omitted",
|
|
4514
|
+
"items_truncated",
|
|
4515
|
+
"review_offset_limit",
|
|
4216
4516
|
"inventory_unavailable",
|
|
4217
4517
|
"catalog_details_unavailable",
|
|
4218
4518
|
"extended_details_unavailable",
|
|
@@ -4430,6 +4730,8 @@
|
|
|
4430
4730
|
"type": "string",
|
|
4431
4731
|
"enum": [
|
|
4432
4732
|
"malformed_items_omitted",
|
|
4733
|
+
"items_truncated",
|
|
4734
|
+
"review_offset_limit",
|
|
4433
4735
|
"inventory_unavailable",
|
|
4434
4736
|
"catalog_details_unavailable",
|
|
4435
4737
|
"extended_details_unavailable",
|
|
@@ -4506,6 +4808,133 @@
|
|
|
4506
4808
|
"additionalProperties": false
|
|
4507
4809
|
},
|
|
4508
4810
|
"images": { "type": "array", "items": { "type": "string", "format": "uri" } },
|
|
4811
|
+
"imageDetails": {
|
|
4812
|
+
"type": "array",
|
|
4813
|
+
"items": {
|
|
4814
|
+
"type": "object",
|
|
4815
|
+
"properties": {
|
|
4816
|
+
"id": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
4817
|
+
"originalWidth": {
|
|
4818
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
4819
|
+
},
|
|
4820
|
+
"originalHeight": {
|
|
4821
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
4822
|
+
},
|
|
4823
|
+
"isSquare": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4824
|
+
"formats": {
|
|
4825
|
+
"type": "object",
|
|
4826
|
+
"propertyNames": { "type": "string" },
|
|
4827
|
+
"additionalProperties": {
|
|
4828
|
+
"type": "object",
|
|
4829
|
+
"properties": {
|
|
4830
|
+
"url": { "type": "string", "format": "uri" },
|
|
4831
|
+
"width": {
|
|
4832
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
4833
|
+
},
|
|
4834
|
+
"height": {
|
|
4835
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
4836
|
+
}
|
|
4837
|
+
},
|
|
4838
|
+
"required": ["url", "width", "height"],
|
|
4839
|
+
"additionalProperties": false
|
|
4840
|
+
}
|
|
4841
|
+
}
|
|
4842
|
+
},
|
|
4843
|
+
"required": ["id", "originalWidth", "originalHeight", "isSquare", "formats"],
|
|
4844
|
+
"additionalProperties": false
|
|
4845
|
+
},
|
|
4846
|
+
"maxItems": 20
|
|
4847
|
+
},
|
|
4848
|
+
"priceBreakdown": {
|
|
4849
|
+
"anyOf": [
|
|
4850
|
+
{
|
|
4851
|
+
"type": "object",
|
|
4852
|
+
"properties": {
|
|
4853
|
+
"item": {
|
|
4854
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
4855
|
+
},
|
|
4856
|
+
"buyerFee": {
|
|
4857
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
4858
|
+
},
|
|
4859
|
+
"tax": {
|
|
4860
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
4861
|
+
},
|
|
4862
|
+
"taxType": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
4863
|
+
"shipping": {
|
|
4864
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
4865
|
+
},
|
|
4866
|
+
"totalIncludes": {
|
|
4867
|
+
"type": "object",
|
|
4868
|
+
"properties": {
|
|
4869
|
+
"buyerFee": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4870
|
+
"shipping": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4871
|
+
"tax": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
|
|
4872
|
+
},
|
|
4873
|
+
"required": ["buyerFee", "shipping", "tax"],
|
|
4874
|
+
"additionalProperties": false
|
|
4875
|
+
},
|
|
4876
|
+
"headlineIncludes": {
|
|
4877
|
+
"type": "object",
|
|
4878
|
+
"properties": {
|
|
4879
|
+
"buyerFee": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4880
|
+
"shipping": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4881
|
+
"tax": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
|
|
4882
|
+
},
|
|
4883
|
+
"required": ["buyerFee", "shipping", "tax"],
|
|
4884
|
+
"additionalProperties": false
|
|
4885
|
+
}
|
|
4886
|
+
},
|
|
4887
|
+
"required": [
|
|
4888
|
+
"item",
|
|
4889
|
+
"buyerFee",
|
|
4890
|
+
"tax",
|
|
4891
|
+
"taxType",
|
|
4892
|
+
"shipping",
|
|
4893
|
+
"totalIncludes",
|
|
4894
|
+
"headlineIncludes"
|
|
4895
|
+
],
|
|
4896
|
+
"additionalProperties": false
|
|
4897
|
+
},
|
|
4898
|
+
{ "type": "null" }
|
|
4899
|
+
]
|
|
4900
|
+
},
|
|
4901
|
+
"originalNationalShippingCost": {
|
|
4902
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
4903
|
+
},
|
|
4904
|
+
"shippingDiscounts": {
|
|
4905
|
+
"anyOf": [
|
|
4906
|
+
{
|
|
4907
|
+
"type": "object",
|
|
4908
|
+
"properties": {
|
|
4909
|
+
"nationalShipping": {
|
|
4910
|
+
"anyOf": [
|
|
4911
|
+
{
|
|
4912
|
+
"type": "object",
|
|
4913
|
+
"properties": {
|
|
4914
|
+
"amount": {
|
|
4915
|
+
"anyOf": [
|
|
4916
|
+
{ "type": "number", "minimum": 0 },
|
|
4917
|
+
{ "type": "null" }
|
|
4918
|
+
]
|
|
4919
|
+
},
|
|
4920
|
+
"type": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
4921
|
+
},
|
|
4922
|
+
"required": ["amount", "type"],
|
|
4923
|
+
"additionalProperties": false
|
|
4924
|
+
},
|
|
4925
|
+
{ "type": "null" }
|
|
4926
|
+
]
|
|
4927
|
+
}
|
|
4928
|
+
},
|
|
4929
|
+
"required": ["nationalShipping"],
|
|
4930
|
+
"additionalProperties": false
|
|
4931
|
+
},
|
|
4932
|
+
{ "type": "null" }
|
|
4933
|
+
]
|
|
4934
|
+
},
|
|
4935
|
+
"brandSlug": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
4936
|
+
"isKnownBrand": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
4937
|
+
"materials": { "type": "array", "items": { "type": "string" } },
|
|
4509
4938
|
"condition": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
4510
4939
|
"colours": { "type": "array", "items": { "type": "string" } },
|
|
4511
4940
|
"styles": { "type": "array", "items": { "type": "string" } },
|
|
@@ -4534,6 +4963,7 @@
|
|
|
4534
4963
|
"additionalProperties": false
|
|
4535
4964
|
}
|
|
4536
4965
|
},
|
|
4966
|
+
"variantSetId": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
4537
4967
|
"listedQuantity": {
|
|
4538
4968
|
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
4539
4969
|
},
|
|
@@ -4570,6 +5000,13 @@
|
|
|
4570
5000
|
"price",
|
|
4571
5001
|
"shipping",
|
|
4572
5002
|
"images",
|
|
5003
|
+
"imageDetails",
|
|
5004
|
+
"priceBreakdown",
|
|
5005
|
+
"originalNationalShippingCost",
|
|
5006
|
+
"shippingDiscounts",
|
|
5007
|
+
"brandSlug",
|
|
5008
|
+
"isKnownBrand",
|
|
5009
|
+
"materials",
|
|
4573
5010
|
"condition",
|
|
4574
5011
|
"colours",
|
|
4575
5012
|
"styles",
|
|
@@ -4579,6 +5016,7 @@
|
|
|
4579
5016
|
"isKids",
|
|
4580
5017
|
"additionalAttributes",
|
|
4581
5018
|
"sizes",
|
|
5019
|
+
"variantSetId",
|
|
4582
5020
|
"listedQuantity",
|
|
4583
5021
|
"location",
|
|
4584
5022
|
"country",
|
|
@@ -4734,6 +5172,8 @@
|
|
|
4734
5172
|
"type": "string",
|
|
4735
5173
|
"enum": [
|
|
4736
5174
|
"malformed_items_omitted",
|
|
5175
|
+
"items_truncated",
|
|
5176
|
+
"review_offset_limit",
|
|
4737
5177
|
"inventory_unavailable",
|
|
4738
5178
|
"catalog_details_unavailable",
|
|
4739
5179
|
"extended_details_unavailable",
|
|
@@ -4810,6 +5250,133 @@
|
|
|
4810
5250
|
"additionalProperties": false
|
|
4811
5251
|
},
|
|
4812
5252
|
"images": { "type": "array", "items": { "type": "string", "format": "uri" } },
|
|
5253
|
+
"imageDetails": {
|
|
5254
|
+
"type": "array",
|
|
5255
|
+
"items": {
|
|
5256
|
+
"type": "object",
|
|
5257
|
+
"properties": {
|
|
5258
|
+
"id": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
5259
|
+
"originalWidth": {
|
|
5260
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
5261
|
+
},
|
|
5262
|
+
"originalHeight": {
|
|
5263
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
5264
|
+
},
|
|
5265
|
+
"isSquare": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
5266
|
+
"formats": {
|
|
5267
|
+
"type": "object",
|
|
5268
|
+
"propertyNames": { "type": "string" },
|
|
5269
|
+
"additionalProperties": {
|
|
5270
|
+
"type": "object",
|
|
5271
|
+
"properties": {
|
|
5272
|
+
"url": { "type": "string", "format": "uri" },
|
|
5273
|
+
"width": {
|
|
5274
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
5275
|
+
},
|
|
5276
|
+
"height": {
|
|
5277
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
5278
|
+
}
|
|
5279
|
+
},
|
|
5280
|
+
"required": ["url", "width", "height"],
|
|
5281
|
+
"additionalProperties": false
|
|
5282
|
+
}
|
|
5283
|
+
}
|
|
5284
|
+
},
|
|
5285
|
+
"required": ["id", "originalWidth", "originalHeight", "isSquare", "formats"],
|
|
5286
|
+
"additionalProperties": false
|
|
5287
|
+
},
|
|
5288
|
+
"maxItems": 20
|
|
5289
|
+
},
|
|
5290
|
+
"priceBreakdown": {
|
|
5291
|
+
"anyOf": [
|
|
5292
|
+
{
|
|
5293
|
+
"type": "object",
|
|
5294
|
+
"properties": {
|
|
5295
|
+
"item": {
|
|
5296
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
5297
|
+
},
|
|
5298
|
+
"buyerFee": {
|
|
5299
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
5300
|
+
},
|
|
5301
|
+
"tax": {
|
|
5302
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
5303
|
+
},
|
|
5304
|
+
"taxType": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
5305
|
+
"shipping": {
|
|
5306
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
5307
|
+
},
|
|
5308
|
+
"totalIncludes": {
|
|
5309
|
+
"type": "object",
|
|
5310
|
+
"properties": {
|
|
5311
|
+
"buyerFee": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
5312
|
+
"shipping": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
5313
|
+
"tax": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
|
|
5314
|
+
},
|
|
5315
|
+
"required": ["buyerFee", "shipping", "tax"],
|
|
5316
|
+
"additionalProperties": false
|
|
5317
|
+
},
|
|
5318
|
+
"headlineIncludes": {
|
|
5319
|
+
"type": "object",
|
|
5320
|
+
"properties": {
|
|
5321
|
+
"buyerFee": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
5322
|
+
"shipping": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
5323
|
+
"tax": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
|
|
5324
|
+
},
|
|
5325
|
+
"required": ["buyerFee", "shipping", "tax"],
|
|
5326
|
+
"additionalProperties": false
|
|
5327
|
+
}
|
|
5328
|
+
},
|
|
5329
|
+
"required": [
|
|
5330
|
+
"item",
|
|
5331
|
+
"buyerFee",
|
|
5332
|
+
"tax",
|
|
5333
|
+
"taxType",
|
|
5334
|
+
"shipping",
|
|
5335
|
+
"totalIncludes",
|
|
5336
|
+
"headlineIncludes"
|
|
5337
|
+
],
|
|
5338
|
+
"additionalProperties": false
|
|
5339
|
+
},
|
|
5340
|
+
{ "type": "null" }
|
|
5341
|
+
]
|
|
5342
|
+
},
|
|
5343
|
+
"originalNationalShippingCost": {
|
|
5344
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
5345
|
+
},
|
|
5346
|
+
"shippingDiscounts": {
|
|
5347
|
+
"anyOf": [
|
|
5348
|
+
{
|
|
5349
|
+
"type": "object",
|
|
5350
|
+
"properties": {
|
|
5351
|
+
"nationalShipping": {
|
|
5352
|
+
"anyOf": [
|
|
5353
|
+
{
|
|
5354
|
+
"type": "object",
|
|
5355
|
+
"properties": {
|
|
5356
|
+
"amount": {
|
|
5357
|
+
"anyOf": [
|
|
5358
|
+
{ "type": "number", "minimum": 0 },
|
|
5359
|
+
{ "type": "null" }
|
|
5360
|
+
]
|
|
5361
|
+
},
|
|
5362
|
+
"type": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
5363
|
+
},
|
|
5364
|
+
"required": ["amount", "type"],
|
|
5365
|
+
"additionalProperties": false
|
|
5366
|
+
},
|
|
5367
|
+
{ "type": "null" }
|
|
5368
|
+
]
|
|
5369
|
+
}
|
|
5370
|
+
},
|
|
5371
|
+
"required": ["nationalShipping"],
|
|
5372
|
+
"additionalProperties": false
|
|
5373
|
+
},
|
|
5374
|
+
{ "type": "null" }
|
|
5375
|
+
]
|
|
5376
|
+
},
|
|
5377
|
+
"brandSlug": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
5378
|
+
"isKnownBrand": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
5379
|
+
"materials": { "type": "array", "items": { "type": "string" } },
|
|
4813
5380
|
"condition": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
4814
5381
|
"colours": { "type": "array", "items": { "type": "string" } },
|
|
4815
5382
|
"styles": { "type": "array", "items": { "type": "string" } },
|
|
@@ -4838,6 +5405,7 @@
|
|
|
4838
5405
|
"additionalProperties": false
|
|
4839
5406
|
}
|
|
4840
5407
|
},
|
|
5408
|
+
"variantSetId": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
4841
5409
|
"listedQuantity": {
|
|
4842
5410
|
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
4843
5411
|
},
|
|
@@ -4874,6 +5442,13 @@
|
|
|
4874
5442
|
"price",
|
|
4875
5443
|
"shipping",
|
|
4876
5444
|
"images",
|
|
5445
|
+
"imageDetails",
|
|
5446
|
+
"priceBreakdown",
|
|
5447
|
+
"originalNationalShippingCost",
|
|
5448
|
+
"shippingDiscounts",
|
|
5449
|
+
"brandSlug",
|
|
5450
|
+
"isKnownBrand",
|
|
5451
|
+
"materials",
|
|
4877
5452
|
"condition",
|
|
4878
5453
|
"colours",
|
|
4879
5454
|
"styles",
|
|
@@ -4883,6 +5458,7 @@
|
|
|
4883
5458
|
"isKids",
|
|
4884
5459
|
"additionalAttributes",
|
|
4885
5460
|
"sizes",
|
|
5461
|
+
"variantSetId",
|
|
4886
5462
|
"listedQuantity",
|
|
4887
5463
|
"location",
|
|
4888
5464
|
"country",
|
|
@@ -4963,13 +5539,359 @@
|
|
|
4963
5539
|
]
|
|
4964
5540
|
}
|
|
4965
5541
|
},
|
|
5542
|
+
{
|
|
5543
|
+
"platform": "depop",
|
|
5544
|
+
"action": "brands",
|
|
5545
|
+
"operation": "depopBrands",
|
|
5546
|
+
"method": "GET",
|
|
5547
|
+
"path": "/v1/depop/brands",
|
|
5548
|
+
"description": "Look up Depop brands by name or slug, with numeric IDs reusable in the brand_id product search filter. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
5549
|
+
"inputSchema": {
|
|
5550
|
+
"type": "object",
|
|
5551
|
+
"properties": {
|
|
5552
|
+
"query": {
|
|
5553
|
+
"type": "string",
|
|
5554
|
+
"maxLength": 200,
|
|
5555
|
+
"pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]*$",
|
|
5556
|
+
"default": "",
|
|
5557
|
+
"description": "Case-insensitive substring of the brand name or slug."
|
|
5558
|
+
},
|
|
5559
|
+
"limit": { "type": "integer", "minimum": 1, "maximum": 100, "default": 100 },
|
|
5560
|
+
"offset": { "type": "integer", "minimum": 0, "maximum": 50000, "default": 0 }
|
|
5561
|
+
},
|
|
5562
|
+
"required": [],
|
|
5563
|
+
"additionalProperties": false
|
|
5564
|
+
},
|
|
5565
|
+
"outputSchema": {
|
|
5566
|
+
"anyOf": [
|
|
5567
|
+
{
|
|
5568
|
+
"type": "object",
|
|
5569
|
+
"properties": {
|
|
5570
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
5571
|
+
"accounting": {
|
|
5572
|
+
"type": "object",
|
|
5573
|
+
"properties": {
|
|
5574
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
5575
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
5576
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
5577
|
+
},
|
|
5578
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
5579
|
+
"additionalProperties": false
|
|
5580
|
+
},
|
|
5581
|
+
"success": { "type": "boolean", "const": true },
|
|
5582
|
+
"status": { "type": "string", "enum": ["success", "partial"] },
|
|
5583
|
+
"sourceUrl": { "type": "string", "format": "uri" },
|
|
5584
|
+
"fetchedAt": { "type": "string", "format": "date-time" },
|
|
5585
|
+
"coverage": {
|
|
5586
|
+
"type": "object",
|
|
5587
|
+
"properties": {
|
|
5588
|
+
"source": { "type": "string", "const": "public_api" },
|
|
5589
|
+
"complete": { "type": "boolean" },
|
|
5590
|
+
"warnings": {
|
|
5591
|
+
"type": "array",
|
|
5592
|
+
"items": {
|
|
5593
|
+
"type": "string",
|
|
5594
|
+
"enum": [
|
|
5595
|
+
"malformed_items_omitted",
|
|
5596
|
+
"items_truncated",
|
|
5597
|
+
"review_offset_limit",
|
|
5598
|
+
"inventory_unavailable",
|
|
5599
|
+
"catalog_details_unavailable",
|
|
5600
|
+
"extended_details_unavailable",
|
|
5601
|
+
"total_count_unknown"
|
|
5602
|
+
]
|
|
5603
|
+
}
|
|
5604
|
+
}
|
|
5605
|
+
},
|
|
5606
|
+
"required": ["source", "complete", "warnings"],
|
|
5607
|
+
"additionalProperties": false
|
|
5608
|
+
},
|
|
5609
|
+
"query": { "type": "string" },
|
|
5610
|
+
"offset": { "type": "integer", "minimum": 0 },
|
|
5611
|
+
"limit": { "type": "integer", "minimum": 0 },
|
|
5612
|
+
"totalCount": { "type": "integer", "minimum": 0 },
|
|
5613
|
+
"hasMore": { "type": "boolean" },
|
|
5614
|
+
"nextOffset": { "anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }] },
|
|
5615
|
+
"brands": {
|
|
5616
|
+
"type": "array",
|
|
5617
|
+
"items": {
|
|
5618
|
+
"type": "object",
|
|
5619
|
+
"properties": {
|
|
5620
|
+
"id": { "type": "integer", "minimum": 0 },
|
|
5621
|
+
"name": { "type": "string", "minLength": 1 },
|
|
5622
|
+
"slug": { "type": "string", "minLength": 1 }
|
|
5623
|
+
},
|
|
5624
|
+
"required": ["id", "name", "slug"],
|
|
5625
|
+
"additionalProperties": false
|
|
5626
|
+
},
|
|
5627
|
+
"maxItems": 100
|
|
5628
|
+
}
|
|
5629
|
+
},
|
|
5630
|
+
"required": [
|
|
5631
|
+
"requestId",
|
|
5632
|
+
"accounting",
|
|
5633
|
+
"success",
|
|
5634
|
+
"status",
|
|
5635
|
+
"sourceUrl",
|
|
5636
|
+
"fetchedAt",
|
|
5637
|
+
"coverage",
|
|
5638
|
+
"query",
|
|
5639
|
+
"offset",
|
|
5640
|
+
"limit",
|
|
5641
|
+
"totalCount",
|
|
5642
|
+
"hasMore",
|
|
5643
|
+
"nextOffset",
|
|
5644
|
+
"brands"
|
|
5645
|
+
],
|
|
5646
|
+
"additionalProperties": false
|
|
5647
|
+
},
|
|
5648
|
+
{
|
|
5649
|
+
"type": "object",
|
|
5650
|
+
"properties": {
|
|
5651
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
5652
|
+
"accounting": {
|
|
5653
|
+
"type": "object",
|
|
5654
|
+
"properties": {
|
|
5655
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
5656
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
5657
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
5658
|
+
},
|
|
5659
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
5660
|
+
"additionalProperties": false
|
|
5661
|
+
},
|
|
5662
|
+
"success": { "type": "boolean", "const": false },
|
|
5663
|
+
"status": { "type": "string", "enum": ["failed", "challenged"] },
|
|
5664
|
+
"failure": {
|
|
5665
|
+
"type": "object",
|
|
5666
|
+
"properties": {
|
|
5667
|
+
"code": {
|
|
5668
|
+
"type": "string",
|
|
5669
|
+
"enum": [
|
|
5670
|
+
"invalid_request",
|
|
5671
|
+
"unauthorized",
|
|
5672
|
+
"not_found",
|
|
5673
|
+
"restricted",
|
|
5674
|
+
"upstream_challenged",
|
|
5675
|
+
"upstream_rate_limited",
|
|
5676
|
+
"upstream_error",
|
|
5677
|
+
"unsupported_page",
|
|
5678
|
+
"response_too_large",
|
|
5679
|
+
"request_limit",
|
|
5680
|
+
"timeout",
|
|
5681
|
+
"busy"
|
|
5682
|
+
]
|
|
5683
|
+
},
|
|
5684
|
+
"message": { "type": "string" }
|
|
5685
|
+
},
|
|
5686
|
+
"required": ["code", "message"],
|
|
5687
|
+
"additionalProperties": false
|
|
5688
|
+
}
|
|
5689
|
+
},
|
|
5690
|
+
"required": ["requestId", "accounting", "success", "status", "failure"],
|
|
5691
|
+
"additionalProperties": false
|
|
5692
|
+
}
|
|
5693
|
+
]
|
|
5694
|
+
}
|
|
5695
|
+
},
|
|
5696
|
+
{
|
|
5697
|
+
"platform": "depop",
|
|
5698
|
+
"action": "sizes",
|
|
5699
|
+
"operation": "depopSizes",
|
|
5700
|
+
"method": "GET",
|
|
5701
|
+
"path": "/v1/depop/sizes",
|
|
5702
|
+
"description": "Look up regional size options by department, category, locale and size name, with filter IDs reusable in size_id product search. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
5703
|
+
"inputSchema": {
|
|
5704
|
+
"type": "object",
|
|
5705
|
+
"properties": {
|
|
5706
|
+
"query": {
|
|
5707
|
+
"type": "string",
|
|
5708
|
+
"maxLength": 200,
|
|
5709
|
+
"pattern": "^[^\\u0000-\\u001f\\u007f-\\u009f]*$",
|
|
5710
|
+
"default": "",
|
|
5711
|
+
"description": "Case-insensitive substring of the size name."
|
|
5712
|
+
},
|
|
5713
|
+
"limit": { "type": "integer", "minimum": 1, "maximum": 100, "default": 100 },
|
|
5714
|
+
"offset": { "type": "integer", "minimum": 0, "maximum": 50000, "default": 0 },
|
|
5715
|
+
"department": {
|
|
5716
|
+
"type": "string",
|
|
5717
|
+
"enum": ["menswear", "womenswear", "kidswear"],
|
|
5718
|
+
"description": "menswear, womenswear or kidswear."
|
|
5719
|
+
},
|
|
5720
|
+
"category": {
|
|
5721
|
+
"type": "string",
|
|
5722
|
+
"maxLength": 100,
|
|
5723
|
+
"pattern": "^[a-z0-9]+(?:-[a-z0-9]+)*$",
|
|
5724
|
+
"description": "Size category ID, such as mens-top-sizes."
|
|
5725
|
+
},
|
|
5726
|
+
"locale": {
|
|
5727
|
+
"type": "string",
|
|
5728
|
+
"enum": ["US", "UK", "AU", "EUR"],
|
|
5729
|
+
"description": "US, UK, AU or EUR sizing labels."
|
|
5730
|
+
}
|
|
5731
|
+
},
|
|
5732
|
+
"required": [],
|
|
5733
|
+
"additionalProperties": false
|
|
5734
|
+
},
|
|
5735
|
+
"outputSchema": {
|
|
5736
|
+
"anyOf": [
|
|
5737
|
+
{
|
|
5738
|
+
"type": "object",
|
|
5739
|
+
"properties": {
|
|
5740
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
5741
|
+
"accounting": {
|
|
5742
|
+
"type": "object",
|
|
5743
|
+
"properties": {
|
|
5744
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
5745
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
5746
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
5747
|
+
},
|
|
5748
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
5749
|
+
"additionalProperties": false
|
|
5750
|
+
},
|
|
5751
|
+
"success": { "type": "boolean", "const": true },
|
|
5752
|
+
"status": { "type": "string", "enum": ["success", "partial"] },
|
|
5753
|
+
"sourceUrl": { "type": "string", "format": "uri" },
|
|
5754
|
+
"fetchedAt": { "type": "string", "format": "date-time" },
|
|
5755
|
+
"coverage": {
|
|
5756
|
+
"type": "object",
|
|
5757
|
+
"properties": {
|
|
5758
|
+
"source": { "type": "string", "const": "public_api" },
|
|
5759
|
+
"complete": { "type": "boolean" },
|
|
5760
|
+
"warnings": {
|
|
5761
|
+
"type": "array",
|
|
5762
|
+
"items": {
|
|
5763
|
+
"type": "string",
|
|
5764
|
+
"enum": [
|
|
5765
|
+
"malformed_items_omitted",
|
|
5766
|
+
"items_truncated",
|
|
5767
|
+
"review_offset_limit",
|
|
5768
|
+
"inventory_unavailable",
|
|
5769
|
+
"catalog_details_unavailable",
|
|
5770
|
+
"extended_details_unavailable",
|
|
5771
|
+
"total_count_unknown"
|
|
5772
|
+
]
|
|
5773
|
+
}
|
|
5774
|
+
}
|
|
5775
|
+
},
|
|
5776
|
+
"required": ["source", "complete", "warnings"],
|
|
5777
|
+
"additionalProperties": false
|
|
5778
|
+
},
|
|
5779
|
+
"query": { "type": "string" },
|
|
5780
|
+
"offset": { "type": "integer", "minimum": 0 },
|
|
5781
|
+
"limit": { "type": "integer", "minimum": 0 },
|
|
5782
|
+
"totalCount": { "type": "integer", "minimum": 0 },
|
|
5783
|
+
"hasMore": { "type": "boolean" },
|
|
5784
|
+
"nextOffset": { "anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }] },
|
|
5785
|
+
"sizes": {
|
|
5786
|
+
"type": "array",
|
|
5787
|
+
"items": {
|
|
5788
|
+
"type": "object",
|
|
5789
|
+
"properties": {
|
|
5790
|
+
"filterId": { "type": "string", "pattern": "^[1-9][0-9]*\\.[1-9][0-9]*$" },
|
|
5791
|
+
"variantId": { "type": "integer", "minimum": 0 },
|
|
5792
|
+
"variantSetId": { "type": "integer", "minimum": 0 },
|
|
5793
|
+
"name": { "type": "string", "minLength": 1 },
|
|
5794
|
+
"locale": { "type": "string", "minLength": 1 },
|
|
5795
|
+
"department": {
|
|
5796
|
+
"type": "object",
|
|
5797
|
+
"properties": { "id": { "type": "string" }, "name": { "type": "string" } },
|
|
5798
|
+
"required": ["id", "name"],
|
|
5799
|
+
"additionalProperties": false
|
|
5800
|
+
},
|
|
5801
|
+
"category": {
|
|
5802
|
+
"type": "object",
|
|
5803
|
+
"properties": { "id": { "type": "string" }, "name": { "type": "string" } },
|
|
5804
|
+
"required": ["id", "name"],
|
|
5805
|
+
"additionalProperties": false
|
|
5806
|
+
}
|
|
5807
|
+
},
|
|
5808
|
+
"required": [
|
|
5809
|
+
"filterId",
|
|
5810
|
+
"variantId",
|
|
5811
|
+
"variantSetId",
|
|
5812
|
+
"name",
|
|
5813
|
+
"locale",
|
|
5814
|
+
"department",
|
|
5815
|
+
"category"
|
|
5816
|
+
],
|
|
5817
|
+
"additionalProperties": false
|
|
5818
|
+
},
|
|
5819
|
+
"maxItems": 100
|
|
5820
|
+
}
|
|
5821
|
+
},
|
|
5822
|
+
"required": [
|
|
5823
|
+
"requestId",
|
|
5824
|
+
"accounting",
|
|
5825
|
+
"success",
|
|
5826
|
+
"status",
|
|
5827
|
+
"sourceUrl",
|
|
5828
|
+
"fetchedAt",
|
|
5829
|
+
"coverage",
|
|
5830
|
+
"query",
|
|
5831
|
+
"offset",
|
|
5832
|
+
"limit",
|
|
5833
|
+
"totalCount",
|
|
5834
|
+
"hasMore",
|
|
5835
|
+
"nextOffset",
|
|
5836
|
+
"sizes"
|
|
5837
|
+
],
|
|
5838
|
+
"additionalProperties": false
|
|
5839
|
+
},
|
|
5840
|
+
{
|
|
5841
|
+
"type": "object",
|
|
5842
|
+
"properties": {
|
|
5843
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
5844
|
+
"accounting": {
|
|
5845
|
+
"type": "object",
|
|
5846
|
+
"properties": {
|
|
5847
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
5848
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
5849
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
5850
|
+
},
|
|
5851
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
5852
|
+
"additionalProperties": false
|
|
5853
|
+
},
|
|
5854
|
+
"success": { "type": "boolean", "const": false },
|
|
5855
|
+
"status": { "type": "string", "enum": ["failed", "challenged"] },
|
|
5856
|
+
"failure": {
|
|
5857
|
+
"type": "object",
|
|
5858
|
+
"properties": {
|
|
5859
|
+
"code": {
|
|
5860
|
+
"type": "string",
|
|
5861
|
+
"enum": [
|
|
5862
|
+
"invalid_request",
|
|
5863
|
+
"unauthorized",
|
|
5864
|
+
"not_found",
|
|
5865
|
+
"restricted",
|
|
5866
|
+
"upstream_challenged",
|
|
5867
|
+
"upstream_rate_limited",
|
|
5868
|
+
"upstream_error",
|
|
5869
|
+
"unsupported_page",
|
|
5870
|
+
"response_too_large",
|
|
5871
|
+
"request_limit",
|
|
5872
|
+
"timeout",
|
|
5873
|
+
"busy"
|
|
5874
|
+
]
|
|
5875
|
+
},
|
|
5876
|
+
"message": { "type": "string" }
|
|
5877
|
+
},
|
|
5878
|
+
"required": ["code", "message"],
|
|
5879
|
+
"additionalProperties": false
|
|
5880
|
+
}
|
|
5881
|
+
},
|
|
5882
|
+
"required": ["requestId", "accounting", "success", "status", "failure"],
|
|
5883
|
+
"additionalProperties": false
|
|
5884
|
+
}
|
|
5885
|
+
]
|
|
5886
|
+
}
|
|
5887
|
+
},
|
|
4966
5888
|
{
|
|
4967
5889
|
"platform": "depop",
|
|
4968
5890
|
"action": "search",
|
|
4969
5891
|
"operation": "depopSearch",
|
|
4970
5892
|
"method": "GET",
|
|
4971
5893
|
"path": "/v1/depop/search",
|
|
4972
|
-
"description": "Search Depop products by keyword, category, price, condition, colour, brand, product type, gender, kids or sale filters. Select a market and relevance or price sorting, then pass the cursor for the next page. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
5894
|
+
"description": "Search Depop products by keyword, category, price, condition, colour, brand, size, product type, gender, kids or sale filters. Select a market and relevance or price sorting, then pass the cursor for the next page. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
4973
5895
|
"inputSchema": {
|
|
4974
5896
|
"type": "object",
|
|
4975
5897
|
"properties": {
|
|
@@ -5003,6 +5925,12 @@
|
|
|
5003
5925
|
"maxLength": 400,
|
|
5004
5926
|
"pattern": "^[1-9][0-9]{0,15}(?:,[1-9][0-9]{0,15})*$"
|
|
5005
5927
|
},
|
|
5928
|
+
"size_id": {
|
|
5929
|
+
"type": "string",
|
|
5930
|
+
"maxLength": 400,
|
|
5931
|
+
"pattern": "^[1-9][0-9]{0,8}\\.[1-9][0-9]{0,8}(?:,[1-9][0-9]{0,8}\\.[1-9][0-9]{0,8})*$",
|
|
5932
|
+
"description": "Comma-separated set.variant IDs from GET /v1/depop/sizes, for example 54.4. Multiple IDs select multiple sizes."
|
|
5933
|
+
},
|
|
5006
5934
|
"group": {
|
|
5007
5935
|
"type": "string",
|
|
5008
5936
|
"maxLength": 400,
|
|
@@ -5060,6 +5988,8 @@
|
|
|
5060
5988
|
"type": "string",
|
|
5061
5989
|
"enum": [
|
|
5062
5990
|
"malformed_items_omitted",
|
|
5991
|
+
"items_truncated",
|
|
5992
|
+
"review_offset_limit",
|
|
5063
5993
|
"inventory_unavailable",
|
|
5064
5994
|
"catalog_details_unavailable",
|
|
5065
5995
|
"extended_details_unavailable",
|
|
@@ -5135,6 +6065,133 @@
|
|
|
5135
6065
|
"additionalProperties": false
|
|
5136
6066
|
},
|
|
5137
6067
|
"images": { "type": "array", "items": { "type": "string", "format": "uri" } },
|
|
6068
|
+
"imageDetails": {
|
|
6069
|
+
"type": "array",
|
|
6070
|
+
"items": {
|
|
6071
|
+
"type": "object",
|
|
6072
|
+
"properties": {
|
|
6073
|
+
"id": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
6074
|
+
"originalWidth": {
|
|
6075
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
6076
|
+
},
|
|
6077
|
+
"originalHeight": {
|
|
6078
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
6079
|
+
},
|
|
6080
|
+
"isSquare": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
6081
|
+
"formats": {
|
|
6082
|
+
"type": "object",
|
|
6083
|
+
"propertyNames": { "type": "string" },
|
|
6084
|
+
"additionalProperties": {
|
|
6085
|
+
"type": "object",
|
|
6086
|
+
"properties": {
|
|
6087
|
+
"url": { "type": "string", "format": "uri" },
|
|
6088
|
+
"width": {
|
|
6089
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
6090
|
+
},
|
|
6091
|
+
"height": {
|
|
6092
|
+
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
6093
|
+
}
|
|
6094
|
+
},
|
|
6095
|
+
"required": ["url", "width", "height"],
|
|
6096
|
+
"additionalProperties": false
|
|
6097
|
+
}
|
|
6098
|
+
}
|
|
6099
|
+
},
|
|
6100
|
+
"required": ["id", "originalWidth", "originalHeight", "isSquare", "formats"],
|
|
6101
|
+
"additionalProperties": false
|
|
6102
|
+
},
|
|
6103
|
+
"maxItems": 20
|
|
6104
|
+
},
|
|
6105
|
+
"priceBreakdown": {
|
|
6106
|
+
"anyOf": [
|
|
6107
|
+
{
|
|
6108
|
+
"type": "object",
|
|
6109
|
+
"properties": {
|
|
6110
|
+
"item": {
|
|
6111
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
6112
|
+
},
|
|
6113
|
+
"buyerFee": {
|
|
6114
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
6115
|
+
},
|
|
6116
|
+
"tax": {
|
|
6117
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
6118
|
+
},
|
|
6119
|
+
"taxType": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
6120
|
+
"shipping": {
|
|
6121
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
6122
|
+
},
|
|
6123
|
+
"totalIncludes": {
|
|
6124
|
+
"type": "object",
|
|
6125
|
+
"properties": {
|
|
6126
|
+
"buyerFee": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
6127
|
+
"shipping": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
6128
|
+
"tax": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
|
|
6129
|
+
},
|
|
6130
|
+
"required": ["buyerFee", "shipping", "tax"],
|
|
6131
|
+
"additionalProperties": false
|
|
6132
|
+
},
|
|
6133
|
+
"headlineIncludes": {
|
|
6134
|
+
"type": "object",
|
|
6135
|
+
"properties": {
|
|
6136
|
+
"buyerFee": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
6137
|
+
"shipping": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
6138
|
+
"tax": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] }
|
|
6139
|
+
},
|
|
6140
|
+
"required": ["buyerFee", "shipping", "tax"],
|
|
6141
|
+
"additionalProperties": false
|
|
6142
|
+
}
|
|
6143
|
+
},
|
|
6144
|
+
"required": [
|
|
6145
|
+
"item",
|
|
6146
|
+
"buyerFee",
|
|
6147
|
+
"tax",
|
|
6148
|
+
"taxType",
|
|
6149
|
+
"shipping",
|
|
6150
|
+
"totalIncludes",
|
|
6151
|
+
"headlineIncludes"
|
|
6152
|
+
],
|
|
6153
|
+
"additionalProperties": false
|
|
6154
|
+
},
|
|
6155
|
+
{ "type": "null" }
|
|
6156
|
+
]
|
|
6157
|
+
},
|
|
6158
|
+
"originalNationalShippingCost": {
|
|
6159
|
+
"anyOf": [{ "type": "number", "minimum": 0 }, { "type": "null" }]
|
|
6160
|
+
},
|
|
6161
|
+
"shippingDiscounts": {
|
|
6162
|
+
"anyOf": [
|
|
6163
|
+
{
|
|
6164
|
+
"type": "object",
|
|
6165
|
+
"properties": {
|
|
6166
|
+
"nationalShipping": {
|
|
6167
|
+
"anyOf": [
|
|
6168
|
+
{
|
|
6169
|
+
"type": "object",
|
|
6170
|
+
"properties": {
|
|
6171
|
+
"amount": {
|
|
6172
|
+
"anyOf": [
|
|
6173
|
+
{ "type": "number", "minimum": 0 },
|
|
6174
|
+
{ "type": "null" }
|
|
6175
|
+
]
|
|
6176
|
+
},
|
|
6177
|
+
"type": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
6178
|
+
},
|
|
6179
|
+
"required": ["amount", "type"],
|
|
6180
|
+
"additionalProperties": false
|
|
6181
|
+
},
|
|
6182
|
+
{ "type": "null" }
|
|
6183
|
+
]
|
|
6184
|
+
}
|
|
6185
|
+
},
|
|
6186
|
+
"required": ["nationalShipping"],
|
|
6187
|
+
"additionalProperties": false
|
|
6188
|
+
},
|
|
6189
|
+
{ "type": "null" }
|
|
6190
|
+
]
|
|
6191
|
+
},
|
|
6192
|
+
"brandSlug": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
6193
|
+
"isKnownBrand": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
6194
|
+
"materials": { "type": "array", "items": { "type": "string" } },
|
|
5138
6195
|
"condition": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
5139
6196
|
"colours": { "type": "array", "items": { "type": "string" } },
|
|
5140
6197
|
"styles": { "type": "array", "items": { "type": "string" } },
|
|
@@ -5163,6 +6220,7 @@
|
|
|
5163
6220
|
"additionalProperties": false
|
|
5164
6221
|
}
|
|
5165
6222
|
},
|
|
6223
|
+
"variantSetId": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
5166
6224
|
"listedQuantity": {
|
|
5167
6225
|
"anyOf": [{ "type": "integer", "minimum": 0 }, { "type": "null" }]
|
|
5168
6226
|
},
|
|
@@ -5199,6 +6257,13 @@
|
|
|
5199
6257
|
"price",
|
|
5200
6258
|
"shipping",
|
|
5201
6259
|
"images",
|
|
6260
|
+
"imageDetails",
|
|
6261
|
+
"priceBreakdown",
|
|
6262
|
+
"originalNationalShippingCost",
|
|
6263
|
+
"shippingDiscounts",
|
|
6264
|
+
"brandSlug",
|
|
6265
|
+
"isKnownBrand",
|
|
6266
|
+
"materials",
|
|
5202
6267
|
"condition",
|
|
5203
6268
|
"colours",
|
|
5204
6269
|
"styles",
|
|
@@ -5208,6 +6273,7 @@
|
|
|
5208
6273
|
"isKids",
|
|
5209
6274
|
"additionalAttributes",
|
|
5210
6275
|
"sizes",
|
|
6276
|
+
"variantSetId",
|
|
5211
6277
|
"listedQuantity",
|
|
5212
6278
|
"location",
|
|
5213
6279
|
"country",
|
|
@@ -5344,6 +6410,8 @@
|
|
|
5344
6410
|
"type": "string",
|
|
5345
6411
|
"enum": [
|
|
5346
6412
|
"malformed_items_omitted",
|
|
6413
|
+
"items_truncated",
|
|
6414
|
+
"review_offset_limit",
|
|
5347
6415
|
"inventory_unavailable",
|
|
5348
6416
|
"catalog_details_unavailable",
|
|
5349
6417
|
"extended_details_unavailable",
|
|
@@ -9458,7 +10526,7 @@
|
|
|
9458
10526
|
"operation": "facebookPost",
|
|
9459
10527
|
"method": "GET",
|
|
9460
10528
|
"path": "/v1/facebook/post",
|
|
9461
|
-
"description": "Retrieve one public post or reel with available media and engagement. Optional comments and transcript reads preserve failures as nulls with warnings. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
10529
|
+
"description": "Retrieve one public post or reel with available media and engagement. Optional comments and transcript reads preserve failures as nulls with warnings. Includes ordered media attachments with native IDs, GIF types and video rendition metadata. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
9462
10530
|
"inputSchema": {
|
|
9463
10531
|
"type": "object",
|
|
9464
10532
|
"properties": {
|
|
@@ -9507,6 +10575,94 @@
|
|
|
9507
10575
|
{ "type": "null" }
|
|
9508
10576
|
]
|
|
9509
10577
|
},
|
|
10578
|
+
"mediaAttachments": {
|
|
10579
|
+
"type": "array",
|
|
10580
|
+
"items": {
|
|
10581
|
+
"type": "object",
|
|
10582
|
+
"properties": {
|
|
10583
|
+
"id": {
|
|
10584
|
+
"anyOf": [
|
|
10585
|
+
{ "anyOf": [{ "type": "string" }, { "type": "number" }] },
|
|
10586
|
+
{ "type": "null" }
|
|
10587
|
+
]
|
|
10588
|
+
},
|
|
10589
|
+
"index": { "type": "integer", "minimum": 0 },
|
|
10590
|
+
"type": { "type": "string", "enum": ["image", "video", "gif", "unknown"] },
|
|
10591
|
+
"url": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
10592
|
+
"thumbnailUrl": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
10593
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
10594
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
10595
|
+
"bestVideo": {
|
|
10596
|
+
"anyOf": [
|
|
10597
|
+
{
|
|
10598
|
+
"type": "object",
|
|
10599
|
+
"properties": {
|
|
10600
|
+
"url": { "type": "string" },
|
|
10601
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
10602
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
10603
|
+
"bitrate": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
10604
|
+
"hasAudio": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
10605
|
+
"source": { "type": "string", "enum": ["progressive", "dash"] },
|
|
10606
|
+
"mimeType": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
10607
|
+
},
|
|
10608
|
+
"required": [
|
|
10609
|
+
"url",
|
|
10610
|
+
"width",
|
|
10611
|
+
"height",
|
|
10612
|
+
"bitrate",
|
|
10613
|
+
"hasAudio",
|
|
10614
|
+
"source",
|
|
10615
|
+
"mimeType"
|
|
10616
|
+
],
|
|
10617
|
+
"additionalProperties": false
|
|
10618
|
+
},
|
|
10619
|
+
{ "type": "null" }
|
|
10620
|
+
]
|
|
10621
|
+
},
|
|
10622
|
+
"audioUrl": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
10623
|
+
"variants": {
|
|
10624
|
+
"type": "array",
|
|
10625
|
+
"items": {
|
|
10626
|
+
"type": "object",
|
|
10627
|
+
"properties": {
|
|
10628
|
+
"url": { "type": "string" },
|
|
10629
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
10630
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
10631
|
+
"bitrate": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
10632
|
+
"hasAudio": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
10633
|
+
"source": { "type": "string", "enum": ["progressive", "dash"] },
|
|
10634
|
+
"mimeType": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
10635
|
+
},
|
|
10636
|
+
"required": [
|
|
10637
|
+
"url",
|
|
10638
|
+
"width",
|
|
10639
|
+
"height",
|
|
10640
|
+
"bitrate",
|
|
10641
|
+
"hasAudio",
|
|
10642
|
+
"source",
|
|
10643
|
+
"mimeType"
|
|
10644
|
+
],
|
|
10645
|
+
"additionalProperties": false
|
|
10646
|
+
},
|
|
10647
|
+
"maxItems": 100
|
|
10648
|
+
}
|
|
10649
|
+
},
|
|
10650
|
+
"required": [
|
|
10651
|
+
"id",
|
|
10652
|
+
"index",
|
|
10653
|
+
"type",
|
|
10654
|
+
"url",
|
|
10655
|
+
"thumbnailUrl",
|
|
10656
|
+
"width",
|
|
10657
|
+
"height",
|
|
10658
|
+
"bestVideo",
|
|
10659
|
+
"audioUrl",
|
|
10660
|
+
"variants"
|
|
10661
|
+
],
|
|
10662
|
+
"additionalProperties": false
|
|
10663
|
+
},
|
|
10664
|
+
"maxItems": 100
|
|
10665
|
+
},
|
|
9510
10666
|
"author": {
|
|
9511
10667
|
"anyOf": [
|
|
9512
10668
|
{
|
|
@@ -9596,6 +10752,7 @@
|
|
|
9596
10752
|
"url",
|
|
9597
10753
|
"image_url",
|
|
9598
10754
|
"video",
|
|
10755
|
+
"mediaAttachments",
|
|
9599
10756
|
"author",
|
|
9600
10757
|
"music",
|
|
9601
10758
|
"success",
|
|
@@ -9664,7 +10821,7 @@
|
|
|
9664
10821
|
"operation": "facebookPosts",
|
|
9665
10822
|
"method": "GET",
|
|
9666
10823
|
"path": "/v1/facebook/posts",
|
|
9667
|
-
"description": "Retrieve one public post or reel with available media and engagement. Optional comments and transcript reads preserve failures as nulls with warnings. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
10824
|
+
"description": "Retrieve one public post or reel with available media and engagement. Optional comments and transcript reads preserve failures as nulls with warnings. Includes ordered media attachments with native IDs, GIF types and video rendition metadata. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
9668
10825
|
"inputSchema": {
|
|
9669
10826
|
"type": "object",
|
|
9670
10827
|
"properties": {
|
|
@@ -10434,7 +11591,7 @@
|
|
|
10434
11591
|
"operation": "facebookProfileFull",
|
|
10435
11592
|
"method": "GET",
|
|
10436
11593
|
"path": "/v1/facebook/profile/full",
|
|
10437
|
-
"description": "Retrieve the critical profile plus one page of posts and optional computed metrics. Per-leg status preserves post failures without losing a usable profile. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
11594
|
+
"description": "Retrieve the critical profile plus one page of posts and optional computed metrics. Per-leg status preserves post failures without losing a usable profile. Includes ordered media attachments with native IDs, GIF types and video rendition metadata. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
10438
11595
|
"inputSchema": {
|
|
10439
11596
|
"type": "object",
|
|
10440
11597
|
"properties": {
|
|
@@ -10863,7 +12020,7 @@
|
|
|
10863
12020
|
"operation": "facebookGroupPosts",
|
|
10864
12021
|
"method": "GET",
|
|
10865
12022
|
"path": "/v1/facebook/group/posts",
|
|
10866
|
-
"description": "Retrieve a public group feed in the requested native order, with continuation. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
12023
|
+
"description": "Retrieve a public group feed in the requested native order, with continuation. Includes ordered media attachments with native IDs, GIF types and video rendition metadata. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
10867
12024
|
"inputSchema": {
|
|
10868
12025
|
"type": "object",
|
|
10869
12026
|
"properties": {
|
|
@@ -10943,7 +12100,99 @@
|
|
|
10943
12100
|
"type": "array",
|
|
10944
12101
|
"items": {
|
|
10945
12102
|
"type": "object",
|
|
10946
|
-
"
|
|
12103
|
+
"properties": {
|
|
12104
|
+
"mediaAttachments": {
|
|
12105
|
+
"type": "array",
|
|
12106
|
+
"items": {
|
|
12107
|
+
"type": "object",
|
|
12108
|
+
"properties": {
|
|
12109
|
+
"id": {
|
|
12110
|
+
"anyOf": [
|
|
12111
|
+
{ "anyOf": [{ "type": "string" }, { "type": "number" }] },
|
|
12112
|
+
{ "type": "null" }
|
|
12113
|
+
]
|
|
12114
|
+
},
|
|
12115
|
+
"index": { "type": "integer", "minimum": 0 },
|
|
12116
|
+
"type": { "type": "string", "enum": ["image", "video", "gif", "unknown"] },
|
|
12117
|
+
"url": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
12118
|
+
"thumbnailUrl": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
12119
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
12120
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
12121
|
+
"bestVideo": {
|
|
12122
|
+
"anyOf": [
|
|
12123
|
+
{
|
|
12124
|
+
"type": "object",
|
|
12125
|
+
"properties": {
|
|
12126
|
+
"url": { "type": "string" },
|
|
12127
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
12128
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
12129
|
+
"bitrate": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
12130
|
+
"hasAudio": {
|
|
12131
|
+
"anyOf": [{ "type": "boolean" }, { "type": "null" }]
|
|
12132
|
+
},
|
|
12133
|
+
"source": { "type": "string", "enum": ["progressive", "dash"] },
|
|
12134
|
+
"mimeType": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
12135
|
+
},
|
|
12136
|
+
"required": [
|
|
12137
|
+
"url",
|
|
12138
|
+
"width",
|
|
12139
|
+
"height",
|
|
12140
|
+
"bitrate",
|
|
12141
|
+
"hasAudio",
|
|
12142
|
+
"source",
|
|
12143
|
+
"mimeType"
|
|
12144
|
+
],
|
|
12145
|
+
"additionalProperties": false
|
|
12146
|
+
},
|
|
12147
|
+
{ "type": "null" }
|
|
12148
|
+
]
|
|
12149
|
+
},
|
|
12150
|
+
"audioUrl": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
12151
|
+
"variants": {
|
|
12152
|
+
"type": "array",
|
|
12153
|
+
"items": {
|
|
12154
|
+
"type": "object",
|
|
12155
|
+
"properties": {
|
|
12156
|
+
"url": { "type": "string" },
|
|
12157
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
12158
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
12159
|
+
"bitrate": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
12160
|
+
"hasAudio": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
12161
|
+
"source": { "type": "string", "enum": ["progressive", "dash"] },
|
|
12162
|
+
"mimeType": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
12163
|
+
},
|
|
12164
|
+
"required": [
|
|
12165
|
+
"url",
|
|
12166
|
+
"width",
|
|
12167
|
+
"height",
|
|
12168
|
+
"bitrate",
|
|
12169
|
+
"hasAudio",
|
|
12170
|
+
"source",
|
|
12171
|
+
"mimeType"
|
|
12172
|
+
],
|
|
12173
|
+
"additionalProperties": false
|
|
12174
|
+
},
|
|
12175
|
+
"maxItems": 100
|
|
12176
|
+
}
|
|
12177
|
+
},
|
|
12178
|
+
"required": [
|
|
12179
|
+
"id",
|
|
12180
|
+
"index",
|
|
12181
|
+
"type",
|
|
12182
|
+
"url",
|
|
12183
|
+
"thumbnailUrl",
|
|
12184
|
+
"width",
|
|
12185
|
+
"height",
|
|
12186
|
+
"bestVideo",
|
|
12187
|
+
"audioUrl",
|
|
12188
|
+
"variants"
|
|
12189
|
+
],
|
|
12190
|
+
"additionalProperties": false
|
|
12191
|
+
},
|
|
12192
|
+
"maxItems": 100
|
|
12193
|
+
}
|
|
12194
|
+
},
|
|
12195
|
+
"required": ["mediaAttachments"],
|
|
10947
12196
|
"additionalProperties": {}
|
|
10948
12197
|
},
|
|
10949
12198
|
"maxItems": 100
|
|
@@ -11019,7 +12268,7 @@
|
|
|
11019
12268
|
"operation": "facebookGroupsPosts",
|
|
11020
12269
|
"method": "GET",
|
|
11021
12270
|
"path": "/v1/facebook/groups/posts",
|
|
11022
|
-
"description": "Retrieve a public group feed in the requested native order, with continuation. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
12271
|
+
"description": "Retrieve a public group feed in the requested native order, with continuation. Includes ordered media attachments with native IDs, GIF types and video rendition metadata. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
11023
12272
|
"inputSchema": {
|
|
11024
12273
|
"type": "object",
|
|
11025
12274
|
"properties": {
|
|
@@ -11461,7 +12710,7 @@
|
|
|
11461
12710
|
"operation": "facebookProfilePhotos",
|
|
11462
12711
|
"method": "GET",
|
|
11463
12712
|
"path": "/v1/facebook/profile/photos",
|
|
11464
|
-
"description": "Retrieve one public photos page with source image URLs and accessibility captions. include=details adds per-photo reads. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
12713
|
+
"description": "Retrieve one public photos page with source image URLs and accessibility captions. include=details adds per-photo reads. Enriched post details include ordered media attachments with native IDs and media types. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
11465
12714
|
"inputSchema": {
|
|
11466
12715
|
"type": "object",
|
|
11467
12716
|
"properties": {
|
|
@@ -11765,7 +13014,7 @@
|
|
|
11765
13014
|
"operation": "facebookProfilePosts",
|
|
11766
13015
|
"method": "GET",
|
|
11767
13016
|
"path": "/v1/facebook/profile/posts",
|
|
11768
|
-
"description": "Retrieve one page of feed posts, with media, reaction counts, author metadata and continuation. include=engagement adds per-post reads. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
13017
|
+
"description": "Retrieve one page of feed posts, with media, reaction counts, author metadata and continuation. include=engagement adds per-post reads. Includes ordered media attachments with native IDs, GIF types and video rendition metadata. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
11769
13018
|
"inputSchema": {
|
|
11770
13019
|
"type": "object",
|
|
11771
13020
|
"properties": {
|
|
@@ -11845,7 +13094,99 @@
|
|
|
11845
13094
|
"type": "array",
|
|
11846
13095
|
"items": {
|
|
11847
13096
|
"type": "object",
|
|
11848
|
-
"
|
|
13097
|
+
"properties": {
|
|
13098
|
+
"mediaAttachments": {
|
|
13099
|
+
"type": "array",
|
|
13100
|
+
"items": {
|
|
13101
|
+
"type": "object",
|
|
13102
|
+
"properties": {
|
|
13103
|
+
"id": {
|
|
13104
|
+
"anyOf": [
|
|
13105
|
+
{ "anyOf": [{ "type": "string" }, { "type": "number" }] },
|
|
13106
|
+
{ "type": "null" }
|
|
13107
|
+
]
|
|
13108
|
+
},
|
|
13109
|
+
"index": { "type": "integer", "minimum": 0 },
|
|
13110
|
+
"type": { "type": "string", "enum": ["image", "video", "gif", "unknown"] },
|
|
13111
|
+
"url": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
13112
|
+
"thumbnailUrl": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
13113
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13114
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13115
|
+
"bestVideo": {
|
|
13116
|
+
"anyOf": [
|
|
13117
|
+
{
|
|
13118
|
+
"type": "object",
|
|
13119
|
+
"properties": {
|
|
13120
|
+
"url": { "type": "string" },
|
|
13121
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13122
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13123
|
+
"bitrate": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13124
|
+
"hasAudio": {
|
|
13125
|
+
"anyOf": [{ "type": "boolean" }, { "type": "null" }]
|
|
13126
|
+
},
|
|
13127
|
+
"source": { "type": "string", "enum": ["progressive", "dash"] },
|
|
13128
|
+
"mimeType": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
13129
|
+
},
|
|
13130
|
+
"required": [
|
|
13131
|
+
"url",
|
|
13132
|
+
"width",
|
|
13133
|
+
"height",
|
|
13134
|
+
"bitrate",
|
|
13135
|
+
"hasAudio",
|
|
13136
|
+
"source",
|
|
13137
|
+
"mimeType"
|
|
13138
|
+
],
|
|
13139
|
+
"additionalProperties": false
|
|
13140
|
+
},
|
|
13141
|
+
{ "type": "null" }
|
|
13142
|
+
]
|
|
13143
|
+
},
|
|
13144
|
+
"audioUrl": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
13145
|
+
"variants": {
|
|
13146
|
+
"type": "array",
|
|
13147
|
+
"items": {
|
|
13148
|
+
"type": "object",
|
|
13149
|
+
"properties": {
|
|
13150
|
+
"url": { "type": "string" },
|
|
13151
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13152
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13153
|
+
"bitrate": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13154
|
+
"hasAudio": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
13155
|
+
"source": { "type": "string", "enum": ["progressive", "dash"] },
|
|
13156
|
+
"mimeType": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
13157
|
+
},
|
|
13158
|
+
"required": [
|
|
13159
|
+
"url",
|
|
13160
|
+
"width",
|
|
13161
|
+
"height",
|
|
13162
|
+
"bitrate",
|
|
13163
|
+
"hasAudio",
|
|
13164
|
+
"source",
|
|
13165
|
+
"mimeType"
|
|
13166
|
+
],
|
|
13167
|
+
"additionalProperties": false
|
|
13168
|
+
},
|
|
13169
|
+
"maxItems": 100
|
|
13170
|
+
}
|
|
13171
|
+
},
|
|
13172
|
+
"required": [
|
|
13173
|
+
"id",
|
|
13174
|
+
"index",
|
|
13175
|
+
"type",
|
|
13176
|
+
"url",
|
|
13177
|
+
"thumbnailUrl",
|
|
13178
|
+
"width",
|
|
13179
|
+
"height",
|
|
13180
|
+
"bestVideo",
|
|
13181
|
+
"audioUrl",
|
|
13182
|
+
"variants"
|
|
13183
|
+
],
|
|
13184
|
+
"additionalProperties": false
|
|
13185
|
+
},
|
|
13186
|
+
"maxItems": 100
|
|
13187
|
+
}
|
|
13188
|
+
},
|
|
13189
|
+
"required": ["mediaAttachments"],
|
|
11849
13190
|
"additionalProperties": {}
|
|
11850
13191
|
},
|
|
11851
13192
|
"maxItems": 100
|
|
@@ -11921,7 +13262,7 @@
|
|
|
11921
13262
|
"operation": "facebookProfilesPosts",
|
|
11922
13263
|
"method": "GET",
|
|
11923
13264
|
"path": "/v1/facebook/profiles/posts",
|
|
11924
|
-
"description": "Retrieve one page of feed posts, with media, reaction counts, author metadata and continuation. include=engagement adds per-post reads. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
13265
|
+
"description": "Retrieve one page of feed posts, with media, reaction counts, author metadata and continuation. include=engagement adds per-post reads. Includes ordered media attachments with native IDs, GIF types and video rendition metadata. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
11925
13266
|
"inputSchema": {
|
|
11926
13267
|
"type": "object",
|
|
11927
13268
|
"properties": {
|
|
@@ -12066,7 +13407,7 @@
|
|
|
12066
13407
|
"operation": "facebookProfileReels",
|
|
12067
13408
|
"method": "GET",
|
|
12068
13409
|
"path": "/v1/facebook/profile/reels",
|
|
12069
|
-
"description": "Retrieve one public reels page with video metadata and rounded public view counts. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
13410
|
+
"description": "Retrieve one public reels page with video metadata and rounded public view counts. Includes ordered media attachments with native IDs, GIF types and video rendition metadata. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
12070
13411
|
"inputSchema": {
|
|
12071
13412
|
"type": "object",
|
|
12072
13413
|
"properties": {
|
|
@@ -12141,7 +13482,99 @@
|
|
|
12141
13482
|
"type": "array",
|
|
12142
13483
|
"items": {
|
|
12143
13484
|
"type": "object",
|
|
12144
|
-
"
|
|
13485
|
+
"properties": {
|
|
13486
|
+
"mediaAttachments": {
|
|
13487
|
+
"type": "array",
|
|
13488
|
+
"items": {
|
|
13489
|
+
"type": "object",
|
|
13490
|
+
"properties": {
|
|
13491
|
+
"id": {
|
|
13492
|
+
"anyOf": [
|
|
13493
|
+
{ "anyOf": [{ "type": "string" }, { "type": "number" }] },
|
|
13494
|
+
{ "type": "null" }
|
|
13495
|
+
]
|
|
13496
|
+
},
|
|
13497
|
+
"index": { "type": "integer", "minimum": 0 },
|
|
13498
|
+
"type": { "type": "string", "enum": ["image", "video", "gif", "unknown"] },
|
|
13499
|
+
"url": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
13500
|
+
"thumbnailUrl": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
13501
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13502
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13503
|
+
"bestVideo": {
|
|
13504
|
+
"anyOf": [
|
|
13505
|
+
{
|
|
13506
|
+
"type": "object",
|
|
13507
|
+
"properties": {
|
|
13508
|
+
"url": { "type": "string" },
|
|
13509
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13510
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13511
|
+
"bitrate": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13512
|
+
"hasAudio": {
|
|
13513
|
+
"anyOf": [{ "type": "boolean" }, { "type": "null" }]
|
|
13514
|
+
},
|
|
13515
|
+
"source": { "type": "string", "enum": ["progressive", "dash"] },
|
|
13516
|
+
"mimeType": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
13517
|
+
},
|
|
13518
|
+
"required": [
|
|
13519
|
+
"url",
|
|
13520
|
+
"width",
|
|
13521
|
+
"height",
|
|
13522
|
+
"bitrate",
|
|
13523
|
+
"hasAudio",
|
|
13524
|
+
"source",
|
|
13525
|
+
"mimeType"
|
|
13526
|
+
],
|
|
13527
|
+
"additionalProperties": false
|
|
13528
|
+
},
|
|
13529
|
+
{ "type": "null" }
|
|
13530
|
+
]
|
|
13531
|
+
},
|
|
13532
|
+
"audioUrl": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
13533
|
+
"variants": {
|
|
13534
|
+
"type": "array",
|
|
13535
|
+
"items": {
|
|
13536
|
+
"type": "object",
|
|
13537
|
+
"properties": {
|
|
13538
|
+
"url": { "type": "string" },
|
|
13539
|
+
"width": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13540
|
+
"height": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13541
|
+
"bitrate": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
13542
|
+
"hasAudio": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
13543
|
+
"source": { "type": "string", "enum": ["progressive", "dash"] },
|
|
13544
|
+
"mimeType": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
13545
|
+
},
|
|
13546
|
+
"required": [
|
|
13547
|
+
"url",
|
|
13548
|
+
"width",
|
|
13549
|
+
"height",
|
|
13550
|
+
"bitrate",
|
|
13551
|
+
"hasAudio",
|
|
13552
|
+
"source",
|
|
13553
|
+
"mimeType"
|
|
13554
|
+
],
|
|
13555
|
+
"additionalProperties": false
|
|
13556
|
+
},
|
|
13557
|
+
"maxItems": 100
|
|
13558
|
+
}
|
|
13559
|
+
},
|
|
13560
|
+
"required": [
|
|
13561
|
+
"id",
|
|
13562
|
+
"index",
|
|
13563
|
+
"type",
|
|
13564
|
+
"url",
|
|
13565
|
+
"thumbnailUrl",
|
|
13566
|
+
"width",
|
|
13567
|
+
"height",
|
|
13568
|
+
"bestVideo",
|
|
13569
|
+
"audioUrl",
|
|
13570
|
+
"variants"
|
|
13571
|
+
],
|
|
13572
|
+
"additionalProperties": false
|
|
13573
|
+
},
|
|
13574
|
+
"maxItems": 100
|
|
13575
|
+
}
|
|
13576
|
+
},
|
|
13577
|
+
"required": ["mediaAttachments"],
|
|
12145
13578
|
"additionalProperties": {}
|
|
12146
13579
|
},
|
|
12147
13580
|
"maxItems": 100
|
|
@@ -12219,7 +13652,7 @@
|
|
|
12219
13652
|
"operation": "facebookProfilesReels",
|
|
12220
13653
|
"method": "GET",
|
|
12221
13654
|
"path": "/v1/facebook/profiles/reels",
|
|
12222
|
-
"description": "Retrieve one public reels page with video metadata and rounded public view counts. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
13655
|
+
"description": "Retrieve one public reels page with video metadata and rounded public view counts. Includes ordered media attachments with native IDs, GIF types and video rendition metadata. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
12223
13656
|
"inputSchema": {
|
|
12224
13657
|
"type": "object",
|
|
12225
13658
|
"properties": {
|
|
@@ -12360,7 +13793,7 @@
|
|
|
12360
13793
|
"operation": "facebookProfileReelsFull",
|
|
12361
13794
|
"method": "GET",
|
|
12362
13795
|
"path": "/v1/facebook/profile/reels/full",
|
|
12363
|
-
"description": "Walk up to five reels pages, capped at 50 records, and retrieve per-reel engagement where available. Item coverage and a continuation cursor expose incomplete enrichment. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
13796
|
+
"description": "Walk up to five reels pages, capped at 50 records, and retrieve per-reel engagement where available. Item coverage and a continuation cursor expose incomplete enrichment. Includes ordered media attachments with native IDs, GIF types and video rendition metadata. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
12364
13797
|
"inputSchema": {
|
|
12365
13798
|
"type": "object",
|
|
12366
13799
|
"properties": {
|
|
@@ -14340,11 +15773,274 @@
|
|
|
14340
15773
|
},
|
|
14341
15774
|
{
|
|
14342
15775
|
"platform": "github",
|
|
14343
|
-
"action": "repository",
|
|
14344
|
-
"operation": "githubRepository",
|
|
15776
|
+
"action": "repository",
|
|
15777
|
+
"operation": "githubRepository",
|
|
15778
|
+
"method": "GET",
|
|
15779
|
+
"path": "/v1/github/repository",
|
|
15780
|
+
"description": "Public repository metadata with the same repository fields as user/repositories. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
15781
|
+
"inputSchema": {
|
|
15782
|
+
"type": "object",
|
|
15783
|
+
"properties": {
|
|
15784
|
+
"url": {
|
|
15785
|
+
"type": "string",
|
|
15786
|
+
"maxLength": 2048,
|
|
15787
|
+
"x-runtime-refinement": true,
|
|
15788
|
+
"description": "Canonical HTTPS github.com URL of the user, repository or issue required by this route."
|
|
15789
|
+
}
|
|
15790
|
+
},
|
|
15791
|
+
"required": ["url"],
|
|
15792
|
+
"additionalProperties": false
|
|
15793
|
+
},
|
|
15794
|
+
"outputSchema": {
|
|
15795
|
+
"anyOf": [
|
|
15796
|
+
{
|
|
15797
|
+
"type": "object",
|
|
15798
|
+
"properties": {
|
|
15799
|
+
"success": { "type": "boolean", "const": true },
|
|
15800
|
+
"status": { "type": "string", "enum": ["success", "partial"] },
|
|
15801
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
15802
|
+
"sourceUrl": { "type": "string", "format": "uri" },
|
|
15803
|
+
"fetchedAt": { "type": "string", "format": "date-time" },
|
|
15804
|
+
"coverage": {
|
|
15805
|
+
"type": "object",
|
|
15806
|
+
"properties": {
|
|
15807
|
+
"source": { "type": "string", "enum": ["public_api", "public_html"] },
|
|
15808
|
+
"complete": { "type": "boolean" },
|
|
15809
|
+
"warnings": { "type": "array", "items": { "type": "string" } }
|
|
15810
|
+
},
|
|
15811
|
+
"required": ["source", "complete", "warnings"],
|
|
15812
|
+
"additionalProperties": false
|
|
15813
|
+
},
|
|
15814
|
+
"accounting": {
|
|
15815
|
+
"type": "object",
|
|
15816
|
+
"properties": {
|
|
15817
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
15818
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
15819
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
15820
|
+
},
|
|
15821
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
15822
|
+
"additionalProperties": false
|
|
15823
|
+
},
|
|
15824
|
+
"data": {
|
|
15825
|
+
"type": "object",
|
|
15826
|
+
"propertyNames": { "type": "string" },
|
|
15827
|
+
"additionalProperties": {}
|
|
15828
|
+
}
|
|
15829
|
+
},
|
|
15830
|
+
"required": [
|
|
15831
|
+
"success",
|
|
15832
|
+
"status",
|
|
15833
|
+
"requestId",
|
|
15834
|
+
"sourceUrl",
|
|
15835
|
+
"fetchedAt",
|
|
15836
|
+
"coverage",
|
|
15837
|
+
"accounting"
|
|
15838
|
+
],
|
|
15839
|
+
"additionalProperties": true
|
|
15840
|
+
},
|
|
15841
|
+
{
|
|
15842
|
+
"type": "object",
|
|
15843
|
+
"properties": {
|
|
15844
|
+
"success": { "type": "boolean", "const": false },
|
|
15845
|
+
"status": { "type": "string", "enum": ["failed", "challenged"] },
|
|
15846
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
15847
|
+
"failure": {
|
|
15848
|
+
"type": "object",
|
|
15849
|
+
"properties": {
|
|
15850
|
+
"code": {
|
|
15851
|
+
"type": "string",
|
|
15852
|
+
"enum": [
|
|
15853
|
+
"invalid_request",
|
|
15854
|
+
"unauthorized",
|
|
15855
|
+
"not_found",
|
|
15856
|
+
"upstream_challenged",
|
|
15857
|
+
"upstream_rate_limited",
|
|
15858
|
+
"upstream_error",
|
|
15859
|
+
"unsupported_page",
|
|
15860
|
+
"response_too_large",
|
|
15861
|
+
"unsafe_redirect",
|
|
15862
|
+
"request_limit",
|
|
15863
|
+
"timeout",
|
|
15864
|
+
"busy",
|
|
15865
|
+
"payload_too_complex"
|
|
15866
|
+
]
|
|
15867
|
+
},
|
|
15868
|
+
"message": { "type": "string" }
|
|
15869
|
+
},
|
|
15870
|
+
"required": ["code", "message"],
|
|
15871
|
+
"additionalProperties": false
|
|
15872
|
+
},
|
|
15873
|
+
"accounting": {
|
|
15874
|
+
"type": "object",
|
|
15875
|
+
"properties": {
|
|
15876
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
15877
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
15878
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
15879
|
+
},
|
|
15880
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
15881
|
+
"additionalProperties": false
|
|
15882
|
+
}
|
|
15883
|
+
},
|
|
15884
|
+
"required": ["success", "status", "requestId", "failure", "accounting"],
|
|
15885
|
+
"additionalProperties": false
|
|
15886
|
+
}
|
|
15887
|
+
]
|
|
15888
|
+
}
|
|
15889
|
+
},
|
|
15890
|
+
{
|
|
15891
|
+
"platform": "github",
|
|
15892
|
+
"action": "search",
|
|
15893
|
+
"operation": "githubSearch",
|
|
15894
|
+
"method": "GET",
|
|
15895
|
+
"path": "/v1/github/search",
|
|
15896
|
+
"description": "Public issue and pull-request search with native qualifier syntax. Returns items, total_count, incomplete_results and pagination. Incomplete results and the search ceiling produce explicit coverage warnings. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
15897
|
+
"inputSchema": {
|
|
15898
|
+
"type": "object",
|
|
15899
|
+
"properties": {
|
|
15900
|
+
"cursor": {
|
|
15901
|
+
"type": "string",
|
|
15902
|
+
"pattern": "^[1-9]\\d{0,3}$",
|
|
15903
|
+
"description": "One-based page cursor; activity cursors step backward by month."
|
|
15904
|
+
},
|
|
15905
|
+
"page": {
|
|
15906
|
+
"type": "string",
|
|
15907
|
+
"pattern": "^[1-9]\\d{0,3}$",
|
|
15908
|
+
"description": "Native one-based API page, alternative to cursor."
|
|
15909
|
+
},
|
|
15910
|
+
"limit": {
|
|
15911
|
+
"type": "string",
|
|
15912
|
+
"pattern": "^(?:[1-9]\\d?|100)$",
|
|
15913
|
+
"description": "Page size 1–100, alternative to per_page."
|
|
15914
|
+
},
|
|
15915
|
+
"per_page": {
|
|
15916
|
+
"type": "string",
|
|
15917
|
+
"pattern": "^(?:[1-9]\\d?|100)$",
|
|
15918
|
+
"description": "Native page size 1–100."
|
|
15919
|
+
},
|
|
15920
|
+
"query": {
|
|
15921
|
+
"type": "string",
|
|
15922
|
+
"minLength": 1,
|
|
15923
|
+
"maxLength": 500,
|
|
15924
|
+
"description": "GitHub issue/PR search query, up to 500 characters."
|
|
15925
|
+
},
|
|
15926
|
+
"sort": {
|
|
15927
|
+
"type": "string",
|
|
15928
|
+
"enum": ["reactions", "comments", "created", "updated"],
|
|
15929
|
+
"description": "Endpoint-specific native sort key."
|
|
15930
|
+
},
|
|
15931
|
+
"order": {
|
|
15932
|
+
"type": "string",
|
|
15933
|
+
"enum": ["asc", "desc"],
|
|
15934
|
+
"description": "Search ascending or descending order."
|
|
15935
|
+
}
|
|
15936
|
+
},
|
|
15937
|
+
"required": ["query"],
|
|
15938
|
+
"additionalProperties": false,
|
|
15939
|
+
"x-runtime-refinement": true
|
|
15940
|
+
},
|
|
15941
|
+
"outputSchema": {
|
|
15942
|
+
"anyOf": [
|
|
15943
|
+
{
|
|
15944
|
+
"type": "object",
|
|
15945
|
+
"properties": {
|
|
15946
|
+
"success": { "type": "boolean", "const": true },
|
|
15947
|
+
"status": { "type": "string", "enum": ["success", "partial"] },
|
|
15948
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
15949
|
+
"sourceUrl": { "type": "string", "format": "uri" },
|
|
15950
|
+
"fetchedAt": { "type": "string", "format": "date-time" },
|
|
15951
|
+
"coverage": {
|
|
15952
|
+
"type": "object",
|
|
15953
|
+
"properties": {
|
|
15954
|
+
"source": { "type": "string", "enum": ["public_api", "public_html"] },
|
|
15955
|
+
"complete": { "type": "boolean" },
|
|
15956
|
+
"warnings": { "type": "array", "items": { "type": "string" } }
|
|
15957
|
+
},
|
|
15958
|
+
"required": ["source", "complete", "warnings"],
|
|
15959
|
+
"additionalProperties": false
|
|
15960
|
+
},
|
|
15961
|
+
"accounting": {
|
|
15962
|
+
"type": "object",
|
|
15963
|
+
"properties": {
|
|
15964
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
15965
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
15966
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
15967
|
+
},
|
|
15968
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
15969
|
+
"additionalProperties": false
|
|
15970
|
+
},
|
|
15971
|
+
"data": {
|
|
15972
|
+
"type": "object",
|
|
15973
|
+
"propertyNames": { "type": "string" },
|
|
15974
|
+
"additionalProperties": {}
|
|
15975
|
+
}
|
|
15976
|
+
},
|
|
15977
|
+
"required": [
|
|
15978
|
+
"success",
|
|
15979
|
+
"status",
|
|
15980
|
+
"requestId",
|
|
15981
|
+
"sourceUrl",
|
|
15982
|
+
"fetchedAt",
|
|
15983
|
+
"coverage",
|
|
15984
|
+
"accounting"
|
|
15985
|
+
],
|
|
15986
|
+
"additionalProperties": true
|
|
15987
|
+
},
|
|
15988
|
+
{
|
|
15989
|
+
"type": "object",
|
|
15990
|
+
"properties": {
|
|
15991
|
+
"success": { "type": "boolean", "const": false },
|
|
15992
|
+
"status": { "type": "string", "enum": ["failed", "challenged"] },
|
|
15993
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
15994
|
+
"failure": {
|
|
15995
|
+
"type": "object",
|
|
15996
|
+
"properties": {
|
|
15997
|
+
"code": {
|
|
15998
|
+
"type": "string",
|
|
15999
|
+
"enum": [
|
|
16000
|
+
"invalid_request",
|
|
16001
|
+
"unauthorized",
|
|
16002
|
+
"not_found",
|
|
16003
|
+
"upstream_challenged",
|
|
16004
|
+
"upstream_rate_limited",
|
|
16005
|
+
"upstream_error",
|
|
16006
|
+
"unsupported_page",
|
|
16007
|
+
"response_too_large",
|
|
16008
|
+
"unsafe_redirect",
|
|
16009
|
+
"request_limit",
|
|
16010
|
+
"timeout",
|
|
16011
|
+
"busy",
|
|
16012
|
+
"payload_too_complex"
|
|
16013
|
+
]
|
|
16014
|
+
},
|
|
16015
|
+
"message": { "type": "string" }
|
|
16016
|
+
},
|
|
16017
|
+
"required": ["code", "message"],
|
|
16018
|
+
"additionalProperties": false
|
|
16019
|
+
},
|
|
16020
|
+
"accounting": {
|
|
16021
|
+
"type": "object",
|
|
16022
|
+
"properties": {
|
|
16023
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
16024
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
16025
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
16026
|
+
},
|
|
16027
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
16028
|
+
"additionalProperties": false
|
|
16029
|
+
}
|
|
16030
|
+
},
|
|
16031
|
+
"required": ["success", "status", "requestId", "failure", "accounting"],
|
|
16032
|
+
"additionalProperties": false
|
|
16033
|
+
}
|
|
16034
|
+
]
|
|
16035
|
+
}
|
|
16036
|
+
},
|
|
16037
|
+
{
|
|
16038
|
+
"platform": "github",
|
|
16039
|
+
"action": "top-issues",
|
|
16040
|
+
"operation": "githubTopIssues",
|
|
14345
16041
|
"method": "GET",
|
|
14346
|
-
"path": "/v1/github/
|
|
14347
|
-
"description": "
|
|
16042
|
+
"path": "/v1/github/repo/top-issues",
|
|
16043
|
+
"description": "Top open enhancement issue by reactions, falling back to the top open issue when no enhancement matches, plus the most-discussed open issue. Empty matches return null. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
14348
16044
|
"inputSchema": {
|
|
14349
16045
|
"type": "object",
|
|
14350
16046
|
"properties": {
|
|
@@ -14456,52 +16152,38 @@
|
|
|
14456
16152
|
},
|
|
14457
16153
|
{
|
|
14458
16154
|
"platform": "github",
|
|
14459
|
-
"action": "
|
|
14460
|
-
"operation": "
|
|
16155
|
+
"action": "trending-developers",
|
|
16156
|
+
"operation": "githubTrendingDevelopers",
|
|
14461
16157
|
"method": "GET",
|
|
14462
|
-
"path": "/v1/github/
|
|
14463
|
-
"description": "
|
|
16158
|
+
"path": "/v1/github/trending/developers",
|
|
16159
|
+
"description": "Ranked public trending developers with login, name, avatar and the highlighted popular repository. Includes both payload formats. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
14464
16160
|
"inputSchema": {
|
|
14465
16161
|
"type": "object",
|
|
14466
16162
|
"properties": {
|
|
14467
|
-
"
|
|
14468
|
-
"type": "string",
|
|
14469
|
-
"pattern": "^[1-9]\\d{0,3}$",
|
|
14470
|
-
"description": "One-based page cursor; activity cursors step backward by month."
|
|
14471
|
-
},
|
|
14472
|
-
"page": {
|
|
14473
|
-
"type": "string",
|
|
14474
|
-
"pattern": "^[1-9]\\d{0,3}$",
|
|
14475
|
-
"description": "Native one-based API page, alternative to cursor."
|
|
14476
|
-
},
|
|
14477
|
-
"limit": {
|
|
14478
|
-
"type": "string",
|
|
14479
|
-
"pattern": "^(?:[1-9]\\d?|100)$",
|
|
14480
|
-
"description": "Page size 1–100, alternative to per_page."
|
|
14481
|
-
},
|
|
14482
|
-
"per_page": {
|
|
16163
|
+
"language": {
|
|
14483
16164
|
"type": "string",
|
|
14484
|
-
"
|
|
14485
|
-
"
|
|
16165
|
+
"minLength": 1,
|
|
16166
|
+
"maxLength": 80,
|
|
16167
|
+
"pattern": "^[a-zA-Z0-9#+. -]+$",
|
|
16168
|
+
"description": "Programming language filter for trending."
|
|
14486
16169
|
},
|
|
14487
|
-
"
|
|
16170
|
+
"since": {
|
|
14488
16171
|
"type": "string",
|
|
14489
|
-
"
|
|
14490
|
-
"
|
|
14491
|
-
"description": "GitHub issue/PR search query, up to 500 characters."
|
|
16172
|
+
"enum": ["daily", "weekly", "monthly"],
|
|
16173
|
+
"description": "Inclusive date/timestamp filter, or trending daily/weekly/monthly range."
|
|
14492
16174
|
},
|
|
14493
|
-
"
|
|
16175
|
+
"spoken_language_code": {
|
|
14494
16176
|
"type": "string",
|
|
14495
|
-
"
|
|
14496
|
-
"description": "
|
|
16177
|
+
"pattern": "^[a-z]{2,3}(?:-[A-Z]{2})?$",
|
|
16178
|
+
"description": "Optional spoken language filter for trending repositories."
|
|
14497
16179
|
},
|
|
14498
|
-
"
|
|
16180
|
+
"spokenLanguageCode": {
|
|
14499
16181
|
"type": "string",
|
|
14500
|
-
"
|
|
14501
|
-
"description": "
|
|
16182
|
+
"pattern": "^[a-z]{2,3}(?:-[A-Z]{2})?$",
|
|
16183
|
+
"description": "Alias for spoken_language_code."
|
|
14502
16184
|
}
|
|
14503
16185
|
},
|
|
14504
|
-
"required": [
|
|
16186
|
+
"required": [],
|
|
14505
16187
|
"additionalProperties": false,
|
|
14506
16188
|
"x-runtime-refinement": true
|
|
14507
16189
|
},
|
|
@@ -14603,127 +16285,11 @@
|
|
|
14603
16285
|
},
|
|
14604
16286
|
{
|
|
14605
16287
|
"platform": "github",
|
|
14606
|
-
"action": "
|
|
14607
|
-
"operation": "
|
|
14608
|
-
"method": "GET",
|
|
14609
|
-
"path": "/v1/github/repo/top-issues",
|
|
14610
|
-
"description": "Top open enhancement issue by reactions, falling back to the top open issue when no enhancement matches, plus the most-discussed open issue. Empty matches return null. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
14611
|
-
"inputSchema": {
|
|
14612
|
-
"type": "object",
|
|
14613
|
-
"properties": {
|
|
14614
|
-
"url": {
|
|
14615
|
-
"type": "string",
|
|
14616
|
-
"maxLength": 2048,
|
|
14617
|
-
"x-runtime-refinement": true,
|
|
14618
|
-
"description": "Canonical HTTPS github.com URL of the user, repository or issue required by this route."
|
|
14619
|
-
}
|
|
14620
|
-
},
|
|
14621
|
-
"required": ["url"],
|
|
14622
|
-
"additionalProperties": false
|
|
14623
|
-
},
|
|
14624
|
-
"outputSchema": {
|
|
14625
|
-
"anyOf": [
|
|
14626
|
-
{
|
|
14627
|
-
"type": "object",
|
|
14628
|
-
"properties": {
|
|
14629
|
-
"success": { "type": "boolean", "const": true },
|
|
14630
|
-
"status": { "type": "string", "enum": ["success", "partial"] },
|
|
14631
|
-
"requestId": { "type": "string", "format": "uuid" },
|
|
14632
|
-
"sourceUrl": { "type": "string", "format": "uri" },
|
|
14633
|
-
"fetchedAt": { "type": "string", "format": "date-time" },
|
|
14634
|
-
"coverage": {
|
|
14635
|
-
"type": "object",
|
|
14636
|
-
"properties": {
|
|
14637
|
-
"source": { "type": "string", "enum": ["public_api", "public_html"] },
|
|
14638
|
-
"complete": { "type": "boolean" },
|
|
14639
|
-
"warnings": { "type": "array", "items": { "type": "string" } }
|
|
14640
|
-
},
|
|
14641
|
-
"required": ["source", "complete", "warnings"],
|
|
14642
|
-
"additionalProperties": false
|
|
14643
|
-
},
|
|
14644
|
-
"accounting": {
|
|
14645
|
-
"type": "object",
|
|
14646
|
-
"properties": {
|
|
14647
|
-
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
14648
|
-
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
14649
|
-
"durationMs": { "type": "number", "minimum": 0 }
|
|
14650
|
-
},
|
|
14651
|
-
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
14652
|
-
"additionalProperties": false
|
|
14653
|
-
},
|
|
14654
|
-
"data": {
|
|
14655
|
-
"type": "object",
|
|
14656
|
-
"propertyNames": { "type": "string" },
|
|
14657
|
-
"additionalProperties": {}
|
|
14658
|
-
}
|
|
14659
|
-
},
|
|
14660
|
-
"required": [
|
|
14661
|
-
"success",
|
|
14662
|
-
"status",
|
|
14663
|
-
"requestId",
|
|
14664
|
-
"sourceUrl",
|
|
14665
|
-
"fetchedAt",
|
|
14666
|
-
"coverage",
|
|
14667
|
-
"accounting"
|
|
14668
|
-
],
|
|
14669
|
-
"additionalProperties": true
|
|
14670
|
-
},
|
|
14671
|
-
{
|
|
14672
|
-
"type": "object",
|
|
14673
|
-
"properties": {
|
|
14674
|
-
"success": { "type": "boolean", "const": false },
|
|
14675
|
-
"status": { "type": "string", "enum": ["failed", "challenged"] },
|
|
14676
|
-
"requestId": { "type": "string", "format": "uuid" },
|
|
14677
|
-
"failure": {
|
|
14678
|
-
"type": "object",
|
|
14679
|
-
"properties": {
|
|
14680
|
-
"code": {
|
|
14681
|
-
"type": "string",
|
|
14682
|
-
"enum": [
|
|
14683
|
-
"invalid_request",
|
|
14684
|
-
"unauthorized",
|
|
14685
|
-
"not_found",
|
|
14686
|
-
"upstream_challenged",
|
|
14687
|
-
"upstream_rate_limited",
|
|
14688
|
-
"upstream_error",
|
|
14689
|
-
"unsupported_page",
|
|
14690
|
-
"response_too_large",
|
|
14691
|
-
"unsafe_redirect",
|
|
14692
|
-
"request_limit",
|
|
14693
|
-
"timeout",
|
|
14694
|
-
"busy",
|
|
14695
|
-
"payload_too_complex"
|
|
14696
|
-
]
|
|
14697
|
-
},
|
|
14698
|
-
"message": { "type": "string" }
|
|
14699
|
-
},
|
|
14700
|
-
"required": ["code", "message"],
|
|
14701
|
-
"additionalProperties": false
|
|
14702
|
-
},
|
|
14703
|
-
"accounting": {
|
|
14704
|
-
"type": "object",
|
|
14705
|
-
"properties": {
|
|
14706
|
-
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
14707
|
-
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
14708
|
-
"durationMs": { "type": "number", "minimum": 0 }
|
|
14709
|
-
},
|
|
14710
|
-
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
14711
|
-
"additionalProperties": false
|
|
14712
|
-
}
|
|
14713
|
-
},
|
|
14714
|
-
"required": ["success", "status", "requestId", "failure", "accounting"],
|
|
14715
|
-
"additionalProperties": false
|
|
14716
|
-
}
|
|
14717
|
-
]
|
|
14718
|
-
}
|
|
14719
|
-
},
|
|
14720
|
-
{
|
|
14721
|
-
"platform": "github",
|
|
14722
|
-
"action": "trending-developers",
|
|
14723
|
-
"operation": "githubTrendingDevelopers",
|
|
16288
|
+
"action": "trending-repositories",
|
|
16289
|
+
"operation": "githubTrendingRepositories",
|
|
14724
16290
|
"method": "GET",
|
|
14725
|
-
"path": "/v1/github/trending/
|
|
14726
|
-
"description": "Ranked public trending
|
|
16291
|
+
"path": "/v1/github/trending/repositories",
|
|
16292
|
+
"description": "Ranked public trending repositories with language and color, total stars and forks, stars gained in the selected daily/weekly/monthly range, and credited contributors. Includes both snake_case top-level results and camelCase data results. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
14727
16293
|
"inputSchema": {
|
|
14728
16294
|
"type": "object",
|
|
14729
16295
|
"properties": {
|
|
@@ -14852,35 +16418,24 @@
|
|
|
14852
16418
|
},
|
|
14853
16419
|
{
|
|
14854
16420
|
"platform": "github",
|
|
14855
|
-
"action": "
|
|
14856
|
-
"operation": "
|
|
16421
|
+
"action": "user",
|
|
16422
|
+
"operation": "githubUser",
|
|
14857
16423
|
"method": "GET",
|
|
14858
|
-
"path": "/v1/github/
|
|
14859
|
-
"description": "
|
|
16424
|
+
"path": "/v1/github/user",
|
|
16425
|
+
"description": "Public user or organization identity, biography, public email, company, location, website, account timestamps and repository, gist and follower counts. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
14860
16426
|
"inputSchema": {
|
|
14861
16427
|
"type": "object",
|
|
14862
16428
|
"properties": {
|
|
14863
|
-
"
|
|
14864
|
-
"type": "string",
|
|
14865
|
-
"minLength": 1,
|
|
14866
|
-
"maxLength": 80,
|
|
14867
|
-
"pattern": "^[a-zA-Z0-9#+. -]+$",
|
|
14868
|
-
"description": "Programming language filter for trending."
|
|
14869
|
-
},
|
|
14870
|
-
"since": {
|
|
14871
|
-
"type": "string",
|
|
14872
|
-
"enum": ["daily", "weekly", "monthly"],
|
|
14873
|
-
"description": "Inclusive date/timestamp filter, or trending daily/weekly/monthly range."
|
|
14874
|
-
},
|
|
14875
|
-
"spoken_language_code": {
|
|
16429
|
+
"handle": {
|
|
14876
16430
|
"type": "string",
|
|
14877
|
-
"pattern": "
|
|
14878
|
-
"description": "
|
|
16431
|
+
"pattern": "^@?[A-Za-z0-9](?:[A-Za-z0-9]|-(?=[A-Za-z0-9])){0,38}$",
|
|
16432
|
+
"description": "GitHub handle, optionally beginning with @; 1–39 characters excluding @."
|
|
14879
16433
|
},
|
|
14880
|
-
"
|
|
16434
|
+
"url": {
|
|
14881
16435
|
"type": "string",
|
|
14882
|
-
"
|
|
14883
|
-
"
|
|
16436
|
+
"maxLength": 2048,
|
|
16437
|
+
"x-runtime-refinement": true,
|
|
16438
|
+
"description": "Canonical HTTPS github.com URL of the user, repository or issue required by this route."
|
|
14884
16439
|
}
|
|
14885
16440
|
},
|
|
14886
16441
|
"required": [],
|
|
@@ -14985,11 +16540,11 @@
|
|
|
14985
16540
|
},
|
|
14986
16541
|
{
|
|
14987
16542
|
"platform": "github",
|
|
14988
|
-
"action": "user",
|
|
14989
|
-
"operation": "
|
|
16543
|
+
"action": "user-repositories",
|
|
16544
|
+
"operation": "githubUserRepositories",
|
|
14990
16545
|
"method": "GET",
|
|
14991
|
-
"path": "/v1/github/user",
|
|
14992
|
-
"description": "
|
|
16546
|
+
"path": "/v1/github/user/repositories",
|
|
16547
|
+
"description": "One page of public repositories with owner, description, stars, forks, watchers, topics, license, visibility, branch, size and timestamps. Default sort is updated; page size is 30. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
14993
16548
|
"inputSchema": {
|
|
14994
16549
|
"type": "object",
|
|
14995
16550
|
"properties": {
|
|
@@ -15003,6 +16558,41 @@
|
|
|
15003
16558
|
"maxLength": 2048,
|
|
15004
16559
|
"x-runtime-refinement": true,
|
|
15005
16560
|
"description": "Canonical HTTPS github.com URL of the user, repository or issue required by this route."
|
|
16561
|
+
},
|
|
16562
|
+
"cursor": {
|
|
16563
|
+
"type": "string",
|
|
16564
|
+
"pattern": "^[1-9]\\d{0,3}$",
|
|
16565
|
+
"description": "One-based page cursor; activity cursors step backward by month."
|
|
16566
|
+
},
|
|
16567
|
+
"page": {
|
|
16568
|
+
"type": "string",
|
|
16569
|
+
"pattern": "^[1-9]\\d{0,3}$",
|
|
16570
|
+
"description": "Native one-based API page, alternative to cursor."
|
|
16571
|
+
},
|
|
16572
|
+
"limit": {
|
|
16573
|
+
"type": "string",
|
|
16574
|
+
"pattern": "^(?:[1-9]\\d?|100)$",
|
|
16575
|
+
"description": "Page size 1–100, alternative to per_page."
|
|
16576
|
+
},
|
|
16577
|
+
"per_page": {
|
|
16578
|
+
"type": "string",
|
|
16579
|
+
"pattern": "^(?:[1-9]\\d?|100)$",
|
|
16580
|
+
"description": "Native page size 1–100."
|
|
16581
|
+
},
|
|
16582
|
+
"type": {
|
|
16583
|
+
"type": "string",
|
|
16584
|
+
"enum": ["owner", "all", "member"],
|
|
16585
|
+
"description": "Endpoint-specific repository or issue type filter."
|
|
16586
|
+
},
|
|
16587
|
+
"sort": {
|
|
16588
|
+
"type": "string",
|
|
16589
|
+
"enum": ["created", "updated", "pushed", "full_name"],
|
|
16590
|
+
"description": "Endpoint-specific native sort key."
|
|
16591
|
+
},
|
|
16592
|
+
"direction": {
|
|
16593
|
+
"type": "string",
|
|
16594
|
+
"enum": ["asc", "desc"],
|
|
16595
|
+
"description": "Ascending or descending order."
|
|
15006
16596
|
}
|
|
15007
16597
|
},
|
|
15008
16598
|
"required": [],
|
|
@@ -15107,11 +16697,11 @@
|
|
|
15107
16697
|
},
|
|
15108
16698
|
{
|
|
15109
16699
|
"platform": "github",
|
|
15110
|
-
"action": "
|
|
15111
|
-
"operation": "
|
|
16700
|
+
"action": "velocity",
|
|
16701
|
+
"operation": "githubVelocity",
|
|
15112
16702
|
"method": "GET",
|
|
15113
|
-
"path": "/v1/github/user/
|
|
15114
|
-
"description": "
|
|
16703
|
+
"path": "/v1/github/user/profile-velocity",
|
|
16704
|
+
"description": "Authored and merged PR totals plus sampled contributed and owned repository dossiers. quick selects at most 5 external and 3 owned repositories; default 10/5; deep 15/5. External candidates come from the latest 100 indexed PRs. Totals are all-time search totals, marked in coverage. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
15115
16705
|
"inputSchema": {
|
|
15116
16706
|
"type": "object",
|
|
15117
16707
|
"properties": {
|
|
@@ -15120,51 +16710,14 @@
|
|
|
15120
16710
|
"pattern": "^@?[A-Za-z0-9](?:[A-Za-z0-9]|-(?=[A-Za-z0-9])){0,38}$",
|
|
15121
16711
|
"description": "GitHub handle, optionally beginning with @; 1–39 characters excluding @."
|
|
15122
16712
|
},
|
|
15123
|
-
"
|
|
15124
|
-
"type": "string",
|
|
15125
|
-
"maxLength": 2048,
|
|
15126
|
-
"x-runtime-refinement": true,
|
|
15127
|
-
"description": "Canonical HTTPS github.com URL of the user, repository or issue required by this route."
|
|
15128
|
-
},
|
|
15129
|
-
"cursor": {
|
|
15130
|
-
"type": "string",
|
|
15131
|
-
"pattern": "^[1-9]\\d{0,3}$",
|
|
15132
|
-
"description": "One-based page cursor; activity cursors step backward by month."
|
|
15133
|
-
},
|
|
15134
|
-
"page": {
|
|
15135
|
-
"type": "string",
|
|
15136
|
-
"pattern": "^[1-9]\\d{0,3}$",
|
|
15137
|
-
"description": "Native one-based API page, alternative to cursor."
|
|
15138
|
-
},
|
|
15139
|
-
"limit": {
|
|
15140
|
-
"type": "string",
|
|
15141
|
-
"pattern": "^(?:[1-9]\\d?|100)$",
|
|
15142
|
-
"description": "Page size 1–100, alternative to per_page."
|
|
15143
|
-
},
|
|
15144
|
-
"per_page": {
|
|
15145
|
-
"type": "string",
|
|
15146
|
-
"pattern": "^(?:[1-9]\\d?|100)$",
|
|
15147
|
-
"description": "Native page size 1–100."
|
|
15148
|
-
},
|
|
15149
|
-
"type": {
|
|
15150
|
-
"type": "string",
|
|
15151
|
-
"enum": ["owner", "all", "member"],
|
|
15152
|
-
"description": "Endpoint-specific repository or issue type filter."
|
|
15153
|
-
},
|
|
15154
|
-
"sort": {
|
|
15155
|
-
"type": "string",
|
|
15156
|
-
"enum": ["created", "updated", "pushed", "full_name"],
|
|
15157
|
-
"description": "Endpoint-specific native sort key."
|
|
15158
|
-
},
|
|
15159
|
-
"direction": {
|
|
16713
|
+
"depth": {
|
|
15160
16714
|
"type": "string",
|
|
15161
|
-
"enum": ["
|
|
15162
|
-
"description": "
|
|
16715
|
+
"enum": ["quick", "default", "deep"],
|
|
16716
|
+
"description": "quick, default or deep; controls repository enrichment width."
|
|
15163
16717
|
}
|
|
15164
16718
|
},
|
|
15165
|
-
"required": [],
|
|
15166
|
-
"additionalProperties": false
|
|
15167
|
-
"x-runtime-refinement": true
|
|
16719
|
+
"required": ["handle"],
|
|
16720
|
+
"additionalProperties": false
|
|
15168
16721
|
},
|
|
15169
16722
|
"outputSchema": {
|
|
15170
16723
|
"anyOf": [
|
|
@@ -15263,24 +16816,19 @@
|
|
|
15263
16816
|
}
|
|
15264
16817
|
},
|
|
15265
16818
|
{
|
|
15266
|
-
"platform": "
|
|
15267
|
-
"action": "
|
|
15268
|
-
"operation": "
|
|
16819
|
+
"platform": "hackernews",
|
|
16820
|
+
"action": "profile",
|
|
16821
|
+
"operation": "hackernewsProfile",
|
|
15269
16822
|
"method": "GET",
|
|
15270
|
-
"path": "/v1/
|
|
15271
|
-
"description": "
|
|
16823
|
+
"path": "/v1/hackernews/profile",
|
|
16824
|
+
"description": "Retrieve a public Hacker News user from the official API by case-sensitive username: karma, account creation time, the about text when present, and the count of submitted items. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
15272
16825
|
"inputSchema": {
|
|
15273
16826
|
"type": "object",
|
|
15274
16827
|
"properties": {
|
|
15275
16828
|
"handle": {
|
|
15276
16829
|
"type": "string",
|
|
15277
|
-
"pattern": "
|
|
15278
|
-
"description": "
|
|
15279
|
-
},
|
|
15280
|
-
"depth": {
|
|
15281
|
-
"type": "string",
|
|
15282
|
-
"enum": ["quick", "default", "deep"],
|
|
15283
|
-
"description": "quick, default or deep; controls repository enrichment width."
|
|
16830
|
+
"pattern": "^[A-Za-z0-9_-]{2,15}$",
|
|
16831
|
+
"description": "Required case-sensitive Hacker News username: 2–15 letters, digits, underscores or hyphens, as shown after user?id= on news.ycombinator.com."
|
|
15284
16832
|
}
|
|
15285
16833
|
},
|
|
15286
16834
|
"required": ["handle"],
|
|
@@ -15291,54 +16839,68 @@
|
|
|
15291
16839
|
{
|
|
15292
16840
|
"type": "object",
|
|
15293
16841
|
"properties": {
|
|
16842
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
16843
|
+
"accounting": {
|
|
16844
|
+
"type": "object",
|
|
16845
|
+
"properties": {
|
|
16846
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
16847
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
16848
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
16849
|
+
},
|
|
16850
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
16851
|
+
"additionalProperties": false
|
|
16852
|
+
},
|
|
15294
16853
|
"success": { "type": "boolean", "const": true },
|
|
15295
16854
|
"status": { "type": "string", "enum": ["success", "partial"] },
|
|
15296
|
-
"requestId": { "type": "string", "format": "uuid" },
|
|
15297
16855
|
"sourceUrl": { "type": "string", "format": "uri" },
|
|
15298
16856
|
"fetchedAt": { "type": "string", "format": "date-time" },
|
|
15299
16857
|
"coverage": {
|
|
15300
16858
|
"type": "object",
|
|
15301
16859
|
"properties": {
|
|
15302
|
-
"source": { "type": "string", "
|
|
16860
|
+
"source": { "type": "string", "const": "public_api" },
|
|
15303
16861
|
"complete": { "type": "boolean" },
|
|
15304
16862
|
"warnings": { "type": "array", "items": { "type": "string" } }
|
|
15305
16863
|
},
|
|
15306
16864
|
"required": ["source", "complete", "warnings"],
|
|
15307
16865
|
"additionalProperties": false
|
|
15308
16866
|
},
|
|
15309
|
-
"
|
|
15310
|
-
|
|
15311
|
-
|
|
15312
|
-
|
|
15313
|
-
|
|
15314
|
-
"durationMs": { "type": "number", "minimum": 0 }
|
|
15315
|
-
},
|
|
15316
|
-
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
15317
|
-
"additionalProperties": false
|
|
15318
|
-
},
|
|
15319
|
-
"data": {
|
|
15320
|
-
"type": "object",
|
|
15321
|
-
"propertyNames": { "type": "string" },
|
|
15322
|
-
"additionalProperties": {}
|
|
15323
|
-
}
|
|
16867
|
+
"id": { "type": "string", "minLength": 1 },
|
|
16868
|
+
"created": { "type": "integer" },
|
|
16869
|
+
"karma": { "type": "integer" },
|
|
16870
|
+
"about": { "type": "string" },
|
|
16871
|
+
"submittedCount": { "type": "integer", "minimum": 0 }
|
|
15324
16872
|
},
|
|
15325
16873
|
"required": [
|
|
16874
|
+
"requestId",
|
|
16875
|
+
"accounting",
|
|
15326
16876
|
"success",
|
|
15327
16877
|
"status",
|
|
15328
|
-
"requestId",
|
|
15329
16878
|
"sourceUrl",
|
|
15330
16879
|
"fetchedAt",
|
|
15331
16880
|
"coverage",
|
|
15332
|
-
"
|
|
16881
|
+
"id",
|
|
16882
|
+
"created",
|
|
16883
|
+
"karma",
|
|
16884
|
+
"submittedCount"
|
|
15333
16885
|
],
|
|
15334
|
-
"additionalProperties":
|
|
16886
|
+
"additionalProperties": false
|
|
15335
16887
|
},
|
|
15336
16888
|
{
|
|
15337
16889
|
"type": "object",
|
|
15338
16890
|
"properties": {
|
|
16891
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
16892
|
+
"accounting": {
|
|
16893
|
+
"type": "object",
|
|
16894
|
+
"properties": {
|
|
16895
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
16896
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
16897
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
16898
|
+
},
|
|
16899
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
16900
|
+
"additionalProperties": false
|
|
16901
|
+
},
|
|
15339
16902
|
"success": { "type": "boolean", "const": false },
|
|
15340
16903
|
"status": { "type": "string", "enum": ["failed", "challenged"] },
|
|
15341
|
-
"requestId": { "type": "string", "format": "uuid" },
|
|
15342
16904
|
"failure": {
|
|
15343
16905
|
"type": "object",
|
|
15344
16906
|
"properties": {
|
|
@@ -15364,19 +16926,9 @@
|
|
|
15364
16926
|
},
|
|
15365
16927
|
"required": ["code", "message"],
|
|
15366
16928
|
"additionalProperties": false
|
|
15367
|
-
},
|
|
15368
|
-
"accounting": {
|
|
15369
|
-
"type": "object",
|
|
15370
|
-
"properties": {
|
|
15371
|
-
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
15372
|
-
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
15373
|
-
"durationMs": { "type": "number", "minimum": 0 }
|
|
15374
|
-
},
|
|
15375
|
-
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
15376
|
-
"additionalProperties": false
|
|
15377
16929
|
}
|
|
15378
16930
|
},
|
|
15379
|
-
"required": ["
|
|
16931
|
+
"required": ["requestId", "accounting", "success", "status", "failure"],
|
|
15380
16932
|
"additionalProperties": false
|
|
15381
16933
|
}
|
|
15382
16934
|
]
|
|
@@ -15384,21 +16936,26 @@
|
|
|
15384
16936
|
},
|
|
15385
16937
|
{
|
|
15386
16938
|
"platform": "hackernews",
|
|
15387
|
-
"action": "
|
|
15388
|
-
"operation": "
|
|
16939
|
+
"action": "story",
|
|
16940
|
+
"operation": "hackernewsStory",
|
|
15389
16941
|
"method": "GET",
|
|
15390
|
-
"path": "/v1/hackernews/
|
|
15391
|
-
"description": "Retrieve
|
|
16942
|
+
"path": "/v1/hackernews/story",
|
|
16943
|
+
"description": "Retrieve one Hacker News item by numeric ID: title, submitted URL, author, points, self-post text, poll options and creation time, with the IDs of its direct child comments. Set includeCounts to add the live score and total comment count from the official API. The item type is returned; comment IDs are accepted and return that comment. Use the comments endpoint for the nested discussion. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
15392
16944
|
"inputSchema": {
|
|
15393
16945
|
"type": "object",
|
|
15394
16946
|
"properties": {
|
|
15395
|
-
"
|
|
16947
|
+
"id": {
|
|
15396
16948
|
"type": "string",
|
|
15397
|
-
"pattern": "^[
|
|
15398
|
-
"description": "Required
|
|
16949
|
+
"pattern": "^[1-9]\\d{0,11}$",
|
|
16950
|
+
"description": "Required numeric Hacker News item ID, as shown after item?id= on news.ycombinator.com."
|
|
16951
|
+
},
|
|
16952
|
+
"includeCounts": {
|
|
16953
|
+
"type": "string",
|
|
16954
|
+
"enum": ["true", "false"],
|
|
16955
|
+
"description": "true adds score and descendants from the official item resource in a second source read. Defaults to false."
|
|
15399
16956
|
}
|
|
15400
16957
|
},
|
|
15401
|
-
"required": ["
|
|
16958
|
+
"required": ["id"],
|
|
15402
16959
|
"additionalProperties": false
|
|
15403
16960
|
},
|
|
15404
16961
|
"outputSchema": {
|
|
@@ -15406,6 +16963,18 @@
|
|
|
15406
16963
|
{
|
|
15407
16964
|
"type": "object",
|
|
15408
16965
|
"properties": {
|
|
16966
|
+
"id": { "type": "integer", "minimum": 1 },
|
|
16967
|
+
"created_at": { "type": "string" },
|
|
16968
|
+
"created_at_i": { "type": "integer" },
|
|
16969
|
+
"type": { "type": "string", "minLength": 1 },
|
|
16970
|
+
"author": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
16971
|
+
"title": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
16972
|
+
"url": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
16973
|
+
"text": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
16974
|
+
"points": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
16975
|
+
"parent_id": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
16976
|
+
"story_id": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
16977
|
+
"options": { "type": "array", "items": {}, "maxItems": 100 },
|
|
15409
16978
|
"requestId": { "type": "string", "format": "uuid" },
|
|
15410
16979
|
"accounting": {
|
|
15411
16980
|
"type": "object",
|
|
@@ -15431,13 +17000,23 @@
|
|
|
15431
17000
|
"required": ["source", "complete", "warnings"],
|
|
15432
17001
|
"additionalProperties": false
|
|
15433
17002
|
},
|
|
15434
|
-
"
|
|
15435
|
-
"
|
|
15436
|
-
"
|
|
15437
|
-
"about": { "type": "string" },
|
|
15438
|
-
"submittedCount": { "type": "integer", "minimum": 0 }
|
|
17003
|
+
"score": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
17004
|
+
"descendants": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
17005
|
+
"children": { "type": "array", "items": { "type": "integer" }, "maxItems": 5000 }
|
|
15439
17006
|
},
|
|
15440
17007
|
"required": [
|
|
17008
|
+
"id",
|
|
17009
|
+
"created_at",
|
|
17010
|
+
"created_at_i",
|
|
17011
|
+
"type",
|
|
17012
|
+
"author",
|
|
17013
|
+
"title",
|
|
17014
|
+
"url",
|
|
17015
|
+
"text",
|
|
17016
|
+
"points",
|
|
17017
|
+
"parent_id",
|
|
17018
|
+
"story_id",
|
|
17019
|
+
"options",
|
|
15441
17020
|
"requestId",
|
|
15442
17021
|
"accounting",
|
|
15443
17022
|
"success",
|
|
@@ -15445,10 +17024,7 @@
|
|
|
15445
17024
|
"sourceUrl",
|
|
15446
17025
|
"fetchedAt",
|
|
15447
17026
|
"coverage",
|
|
15448
|
-
"
|
|
15449
|
-
"created",
|
|
15450
|
-
"karma",
|
|
15451
|
-
"submittedCount"
|
|
17027
|
+
"children"
|
|
15452
17028
|
],
|
|
15453
17029
|
"additionalProperties": false
|
|
15454
17030
|
},
|
|
@@ -15503,18 +17079,28 @@
|
|
|
15503
17079
|
},
|
|
15504
17080
|
{
|
|
15505
17081
|
"platform": "hackernews",
|
|
15506
|
-
"action": "story",
|
|
15507
|
-
"operation": "
|
|
17082
|
+
"action": "story-comments",
|
|
17083
|
+
"operation": "hackernewsStoryComments",
|
|
15508
17084
|
"method": "GET",
|
|
15509
|
-
"path": "/v1/hackernews/story",
|
|
15510
|
-
"description": "Retrieve
|
|
17085
|
+
"path": "/v1/hackernews/story/comments",
|
|
17086
|
+
"description": "Retrieve a nested Hacker News comment tree with comment fields and children. Bound the walk with depth and limit to read only the levels you need. Deleted comments retain null author and text values, and coverage describes the returned tree. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
15511
17087
|
"inputSchema": {
|
|
15512
17088
|
"type": "object",
|
|
15513
17089
|
"properties": {
|
|
15514
17090
|
"id": {
|
|
15515
17091
|
"type": "string",
|
|
15516
17092
|
"pattern": "^[1-9]\\d{0,11}$",
|
|
15517
|
-
"description": "Required numeric Hacker News item ID
|
|
17093
|
+
"description": "Required numeric Hacker News item ID; a comment ID returns that comment’s subtree."
|
|
17094
|
+
},
|
|
17095
|
+
"depth": {
|
|
17096
|
+
"type": "string",
|
|
17097
|
+
"pattern": "^(?:[1-9]|[1-9]\\d|1[01]\\d|12[0-8])$",
|
|
17098
|
+
"description": "Reply levels to return, 1–128; top-level comments are depth 1. Defaults to the whole tree. Truncated levels report depth_limit partial coverage."
|
|
17099
|
+
},
|
|
17100
|
+
"limit": {
|
|
17101
|
+
"type": "string",
|
|
17102
|
+
"pattern": "^(?:[1-9]\\d{0,2}|[1-4]\\d{3}|5000)$",
|
|
17103
|
+
"description": "Maximum comment nodes to return, 1–5,000; defaults to 5,000. A truncated tree reports comment_limit partial coverage."
|
|
15518
17104
|
}
|
|
15519
17105
|
},
|
|
15520
17106
|
"required": ["id"],
|
|
@@ -15525,18 +17111,6 @@
|
|
|
15525
17111
|
{
|
|
15526
17112
|
"type": "object",
|
|
15527
17113
|
"properties": {
|
|
15528
|
-
"id": { "type": "integer", "minimum": 1 },
|
|
15529
|
-
"created_at": { "type": "string" },
|
|
15530
|
-
"created_at_i": { "type": "integer" },
|
|
15531
|
-
"type": { "type": "string", "minLength": 1 },
|
|
15532
|
-
"author": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
15533
|
-
"title": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
15534
|
-
"url": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
15535
|
-
"text": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
15536
|
-
"points": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
15537
|
-
"parent_id": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
15538
|
-
"story_id": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
15539
|
-
"options": { "type": "array", "items": {}, "maxItems": 100 },
|
|
15540
17114
|
"requestId": { "type": "string", "format": "uuid" },
|
|
15541
17115
|
"accounting": {
|
|
15542
17116
|
"type": "object",
|
|
@@ -15562,21 +17136,21 @@
|
|
|
15562
17136
|
"required": ["source", "complete", "warnings"],
|
|
15563
17137
|
"additionalProperties": false
|
|
15564
17138
|
},
|
|
15565
|
-
"
|
|
17139
|
+
"id": { "type": "integer", "minimum": 1 },
|
|
17140
|
+
"type": { "type": "string", "minLength": 1 },
|
|
17141
|
+
"commentCount": { "type": "integer", "minimum": 0 },
|
|
17142
|
+
"maxDepth": { "type": "integer", "minimum": 0 },
|
|
17143
|
+
"comments": {
|
|
17144
|
+
"type": "array",
|
|
17145
|
+
"items": {
|
|
17146
|
+
"type": "object",
|
|
17147
|
+
"propertyNames": { "type": "string" },
|
|
17148
|
+
"additionalProperties": {}
|
|
17149
|
+
},
|
|
17150
|
+
"maxItems": 5000
|
|
17151
|
+
}
|
|
15566
17152
|
},
|
|
15567
17153
|
"required": [
|
|
15568
|
-
"id",
|
|
15569
|
-
"created_at",
|
|
15570
|
-
"created_at_i",
|
|
15571
|
-
"type",
|
|
15572
|
-
"author",
|
|
15573
|
-
"title",
|
|
15574
|
-
"url",
|
|
15575
|
-
"text",
|
|
15576
|
-
"points",
|
|
15577
|
-
"parent_id",
|
|
15578
|
-
"story_id",
|
|
15579
|
-
"options",
|
|
15580
17154
|
"requestId",
|
|
15581
17155
|
"accounting",
|
|
15582
17156
|
"success",
|
|
@@ -15584,7 +17158,11 @@
|
|
|
15584
17158
|
"sourceUrl",
|
|
15585
17159
|
"fetchedAt",
|
|
15586
17160
|
"coverage",
|
|
15587
|
-
"
|
|
17161
|
+
"id",
|
|
17162
|
+
"type",
|
|
17163
|
+
"commentCount",
|
|
17164
|
+
"maxDepth",
|
|
17165
|
+
"comments"
|
|
15588
17166
|
],
|
|
15589
17167
|
"additionalProperties": false
|
|
15590
17168
|
},
|
|
@@ -15639,21 +17217,31 @@
|
|
|
15639
17217
|
},
|
|
15640
17218
|
{
|
|
15641
17219
|
"platform": "hackernews",
|
|
15642
|
-
"action": "
|
|
15643
|
-
"operation": "
|
|
17220
|
+
"action": "stories",
|
|
17221
|
+
"operation": "hackernewsStories",
|
|
15644
17222
|
"method": "GET",
|
|
15645
|
-
"path": "/v1/hackernews/
|
|
15646
|
-
"description": "
|
|
17223
|
+
"path": "/v1/hackernews/stories",
|
|
17224
|
+
"description": "List the item IDs of a ranked Hacker News list in source rank order: top (the front page), new, best, Ask HN, Show HN or jobs. IDs are returned as data; read the ones you want with the story endpoint. Page through the list with limit and page. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
15647
17225
|
"inputSchema": {
|
|
15648
17226
|
"type": "object",
|
|
15649
17227
|
"properties": {
|
|
15650
|
-
"
|
|
17228
|
+
"list": {
|
|
15651
17229
|
"type": "string",
|
|
15652
|
-
"
|
|
15653
|
-
"description": "Required
|
|
17230
|
+
"enum": ["top", "new", "best", "ask", "show", "job"],
|
|
17231
|
+
"description": "Required list to read: top, new, best, ask, show or job."
|
|
17232
|
+
},
|
|
17233
|
+
"limit": {
|
|
17234
|
+
"type": "string",
|
|
17235
|
+
"pattern": "^(?:[1-9]\\d?|[1-4]\\d{2}|500)$",
|
|
17236
|
+
"description": "IDs per page, 1–500; defaults to 50."
|
|
17237
|
+
},
|
|
17238
|
+
"page": {
|
|
17239
|
+
"type": "string",
|
|
17240
|
+
"pattern": "^(?:0|[1-9]\\d{0,2})$",
|
|
17241
|
+
"description": "Zero-based page number, 0–999; defaults to 0. A page past the end returns an empty list."
|
|
15654
17242
|
}
|
|
15655
17243
|
},
|
|
15656
|
-
"required": ["
|
|
17244
|
+
"required": ["list"],
|
|
15657
17245
|
"additionalProperties": false
|
|
15658
17246
|
},
|
|
15659
17247
|
"outputSchema": {
|
|
@@ -15686,18 +17274,11 @@
|
|
|
15686
17274
|
"required": ["source", "complete", "warnings"],
|
|
15687
17275
|
"additionalProperties": false
|
|
15688
17276
|
},
|
|
15689
|
-
"
|
|
15690
|
-
"type": { "type": "
|
|
15691
|
-
"
|
|
15692
|
-
"
|
|
15693
|
-
|
|
15694
|
-
"items": {
|
|
15695
|
-
"type": "object",
|
|
15696
|
-
"propertyNames": { "type": "string" },
|
|
15697
|
-
"additionalProperties": {}
|
|
15698
|
-
},
|
|
15699
|
-
"maxItems": 5000
|
|
15700
|
-
}
|
|
17277
|
+
"list": { "type": "string", "enum": ["top", "new", "best", "ask", "show", "job"] },
|
|
17278
|
+
"ids": { "type": "array", "items": { "type": "integer" }, "maxItems": 500 },
|
|
17279
|
+
"total": { "type": "integer", "minimum": 0 },
|
|
17280
|
+
"page": { "type": "integer", "minimum": 0 },
|
|
17281
|
+
"limit": { "type": "integer", "minimum": 1 }
|
|
15701
17282
|
},
|
|
15702
17283
|
"required": [
|
|
15703
17284
|
"requestId",
|
|
@@ -15707,10 +17288,11 @@
|
|
|
15707
17288
|
"sourceUrl",
|
|
15708
17289
|
"fetchedAt",
|
|
15709
17290
|
"coverage",
|
|
15710
|
-
"
|
|
15711
|
-
"
|
|
15712
|
-
"
|
|
15713
|
-
"
|
|
17291
|
+
"list",
|
|
17292
|
+
"ids",
|
|
17293
|
+
"total",
|
|
17294
|
+
"page",
|
|
17295
|
+
"limit"
|
|
15714
17296
|
],
|
|
15715
17297
|
"additionalProperties": false
|
|
15716
17298
|
},
|
|
@@ -15769,7 +17351,7 @@
|
|
|
15769
17351
|
"operation": "hackernewsSearch",
|
|
15770
17352
|
"method": "GET",
|
|
15771
17353
|
"path": "/v1/hackernews/search",
|
|
15772
|
-
"description": "Search Hacker News by relevance. Use tags to select stories, comments, polls, Show HN, Ask HN, front-page items or an author. Filter timestamps and counts with numericFilters, and select a results page. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
17354
|
+
"description": "Search Hacker News by relevance or by date. Use tags to select stories, comments, polls, Show HN, Ask HN, front-page items or an author; query is optional when tags or numericFilters select the results, so a tags-only request returns the current front page or one author’s items. Filter timestamps and counts with numericFilters, restrict matching to chosen attributes, disable typo tolerance for exact matching, and select a results page. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
15773
17355
|
"inputSchema": {
|
|
15774
17356
|
"type": "object",
|
|
15775
17357
|
"properties": {
|
|
@@ -15777,7 +17359,7 @@
|
|
|
15777
17359
|
"type": "string",
|
|
15778
17360
|
"minLength": 1,
|
|
15779
17361
|
"maxLength": 500,
|
|
15780
|
-
"description": "
|
|
17362
|
+
"description": "Free-text search term, 1–500 characters. Optional when tags or numericFilters is supplied. Quoted phrases and -exclusions are supported by the source index."
|
|
15781
17363
|
},
|
|
15782
17364
|
"tags": {
|
|
15783
17365
|
"type": "string",
|
|
@@ -15793,6 +17375,28 @@
|
|
|
15793
17375
|
"x-runtime-refinement": true,
|
|
15794
17376
|
"description": "Comma-separated conditions on created_at_i, points or num_comments using <, <=, =, >= or > with an integer, for example created_at_i>1700000000,points>=100. At most 10 conditions. No filter by default."
|
|
15795
17377
|
},
|
|
17378
|
+
"sortBy": {
|
|
17379
|
+
"type": "string",
|
|
17380
|
+
"enum": ["relevance", "date"],
|
|
17381
|
+
"description": "relevance (default) ranks by the source relevance score; date returns the newest matching items first."
|
|
17382
|
+
},
|
|
17383
|
+
"typoTolerance": {
|
|
17384
|
+
"type": "string",
|
|
17385
|
+
"enum": ["true", "false"],
|
|
17386
|
+
"description": "false matches the query exactly; the source tolerates typos by default. Defaults to the source setting."
|
|
17387
|
+
},
|
|
17388
|
+
"restrictSearchableAttributes": {
|
|
17389
|
+
"type": "string",
|
|
17390
|
+
"maxLength": 100,
|
|
17391
|
+
"pattern": "^(?:title|url|author|story_text|comment_text)(?:,(?:title|url|author|story_text|comment_text))*$",
|
|
17392
|
+
"x-runtime-refinement": true,
|
|
17393
|
+
"description": "Comma-separated attributes to match against: title, url, author, story_text or comment_text. At most 5. Defaults to all of them."
|
|
17394
|
+
},
|
|
17395
|
+
"includeChildren": {
|
|
17396
|
+
"type": "string",
|
|
17397
|
+
"enum": ["true", "false"],
|
|
17398
|
+
"description": "true adds the source children ID list to each hit, bounded at 5,000 IDs with children_limit partial coverage. Defaults to false."
|
|
17399
|
+
},
|
|
15796
17400
|
"hitsPerPage": {
|
|
15797
17401
|
"type": "string",
|
|
15798
17402
|
"pattern": "^(?:[1-9]\\d?|100)$",
|
|
@@ -15804,7 +17408,7 @@
|
|
|
15804
17408
|
"description": "Zero-based page number, 0–999; defaults to 0. The response echoes the page returned by the source."
|
|
15805
17409
|
}
|
|
15806
17410
|
},
|
|
15807
|
-
"required": [
|
|
17411
|
+
"required": [],
|
|
15808
17412
|
"additionalProperties": false
|
|
15809
17413
|
},
|
|
15810
17414
|
"outputSchema": {
|
|
@@ -15857,6 +17461,7 @@
|
|
|
15857
17461
|
"story_text": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
15858
17462
|
"comment_text": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
15859
17463
|
"parent_id": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
17464
|
+
"children": { "type": "array", "items": { "type": "integer" }, "maxItems": 5000 },
|
|
15860
17465
|
"_tags": { "type": "array", "items": { "type": "string" }, "maxItems": 50 }
|
|
15861
17466
|
},
|
|
15862
17467
|
"required": ["objectID", "created_at", "created_at_i", "_tags"],
|
|
@@ -16061,7 +17666,7 @@
|
|
|
16061
17666
|
"operation": "instagramPost",
|
|
16062
17667
|
"method": "GET",
|
|
16063
17668
|
"path": "/v1/instagram/post",
|
|
16064
|
-
"description": "Retrieve a public Instagram post or reel with media URLs, caption, author, timestamps, engagement, comments, carousel items, audio, location and co-authors. Use trim for a compact projection. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
17669
|
+
"description": "Retrieve a public Instagram post or reel with media URLs, caption, author, timestamps, engagement, comments, carousel items, audio, location and co-authors. Use trim for a compact projection and include_comments to select comment enrichment. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
16065
17670
|
"inputSchema": {
|
|
16066
17671
|
"type": "object",
|
|
16067
17672
|
"properties": {
|
|
@@ -16075,6 +17680,11 @@
|
|
|
16075
17680
|
"type": "string",
|
|
16076
17681
|
"enum": ["true", "false"],
|
|
16077
17682
|
"description": "true returns the reference's trimmed projection at the top level as xdt_shortcode_media: id, shortcode, __typename, thumbnail_src, display_url, video_url, has_audio, product_type, video_duration, clips_music_attribution_info, is_video, owner, edge_media_to_caption, edge_media_to_parent_comment, edge_media_preview_comment, taken_at_timestamp, edge_media_preview_like, is_paid_partnership and location."
|
|
17683
|
+
},
|
|
17684
|
+
"include_comments": {
|
|
17685
|
+
"type": "string",
|
|
17686
|
+
"enum": ["true", "false"],
|
|
17687
|
+
"description": "Default true. false answers from the media document alone: the comment edges are empty, the comment counters stay, and coverage reports comments_omitted (status partial). Carousels still read the post page for their child shortcodes."
|
|
16078
17688
|
}
|
|
16079
17689
|
},
|
|
16080
17690
|
"required": ["url"],
|
|
@@ -16291,16 +17901,21 @@
|
|
|
16291
17901
|
"operation": "instagramProfile",
|
|
16292
17902
|
"method": "GET",
|
|
16293
17903
|
"path": "/v1/instagram/profile",
|
|
16294
|
-
"description": "Retrieve a public Instagram profile by handle, including identity, bio, links, follower and following counts, verification, business category and profile pictures. Use trim for a compact projection. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
17904
|
+
"description": "Retrieve a public Instagram profile by handle or numeric user ID, including identity, bio, links, follower and following counts, verification, business category and profile pictures. Use trim for a compact projection. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
16295
17905
|
"inputSchema": {
|
|
16296
17906
|
"type": "object",
|
|
16297
17907
|
"properties": {
|
|
17908
|
+
"user_id": {
|
|
17909
|
+
"type": "string",
|
|
17910
|
+
"pattern": "^[1-9]\\d{0,19}$",
|
|
17911
|
+
"description": "Numeric Instagram user id; exactly one of handle and user_id. Answered from the profile document alone, without a page load."
|
|
17912
|
+
},
|
|
16298
17913
|
"handle": {
|
|
16299
17914
|
"type": "string",
|
|
16300
17915
|
"maxLength": 31,
|
|
16301
17916
|
"pattern": "^@?([A-Za-z0-9_](?:[A-Za-z0-9_.]{0,28}[A-Za-z0-9_])?)$",
|
|
16302
17917
|
"x-runtime-refinement": true,
|
|
16303
|
-
"description": "Instagram username (1–30 letters, digits, periods, underscores; leading @ accepted)."
|
|
17918
|
+
"description": "Instagram username (1–30 letters, digits, periods, underscores; leading @ accepted); exactly one of handle and user_id."
|
|
16304
17919
|
},
|
|
16305
17920
|
"trim": {
|
|
16306
17921
|
"type": "string",
|
|
@@ -16308,8 +17923,9 @@
|
|
|
16308
17923
|
"description": "true returns the reference's trimmed profile projection under the mobile-API names: biography, bio_links, biography_with_entities, external_url, follower_count, fbid_v2, following_count, full_name, id, is_business, is_professional_account, category, is_private, is_verified, profile_pic_url, hd_profile_pic_url_info and username."
|
|
16309
17924
|
}
|
|
16310
17925
|
},
|
|
16311
|
-
"required": [
|
|
16312
|
-
"additionalProperties": false
|
|
17926
|
+
"required": [],
|
|
17927
|
+
"additionalProperties": false,
|
|
17928
|
+
"x-runtime-refinement": true
|
|
16313
17929
|
},
|
|
16314
17930
|
"outputSchema": {
|
|
16315
17931
|
"anyOf": [
|
|
@@ -16979,6 +18595,14 @@
|
|
|
16979
18595
|
"propertyNames": { "type": "string" },
|
|
16980
18596
|
"additionalProperties": {}
|
|
16981
18597
|
},
|
|
18598
|
+
"carousel_media": {
|
|
18599
|
+
"type": "array",
|
|
18600
|
+
"items": {
|
|
18601
|
+
"type": "object",
|
|
18602
|
+
"propertyNames": { "type": "string" },
|
|
18603
|
+
"additionalProperties": {}
|
|
18604
|
+
}
|
|
18605
|
+
},
|
|
16982
18606
|
"product_type": { "type": "string" },
|
|
16983
18607
|
"is_paid_partnership": {
|
|
16984
18608
|
"anyOf": [{ "type": "boolean" }, { "type": "null" }]
|
|
@@ -17270,6 +18894,14 @@
|
|
|
17270
18894
|
"propertyNames": { "type": "string" },
|
|
17271
18895
|
"additionalProperties": {}
|
|
17272
18896
|
},
|
|
18897
|
+
"carousel_media": {
|
|
18898
|
+
"type": "array",
|
|
18899
|
+
"items": {
|
|
18900
|
+
"type": "object",
|
|
18901
|
+
"propertyNames": { "type": "string" },
|
|
18902
|
+
"additionalProperties": {}
|
|
18903
|
+
}
|
|
18904
|
+
},
|
|
17273
18905
|
"product_type": { "type": "string" },
|
|
17274
18906
|
"is_paid_partnership": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
17275
18907
|
"video_versions": {
|
|
@@ -21471,7 +23103,7 @@
|
|
|
21471
23103
|
"operation": "linkedinCompanyPosts",
|
|
21472
23104
|
"method": "GET",
|
|
21473
23105
|
"path": "/v1/linkedin/company/posts",
|
|
21474
|
-
"description": "Numbered pages of a company's public posts. Page 1 is the structured-data list on the company page; later pages read the public guest feed ten posts at a time, where datePublished is derived from the activity id. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
23106
|
+
"description": "Numbered pages of a company's public posts. Page 1 is the structured-data list on the company page; later pages read the public guest feed ten posts at a time, where datePublished is derived from the activity id. Pass the organization_id and paginationToken the company route returned (as organization_id and pagination_token) to read a later page with a single feed request. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
21475
23107
|
"inputSchema": {
|
|
21476
23108
|
"type": "object",
|
|
21477
23109
|
"properties": {
|
|
@@ -21485,7 +23117,17 @@
|
|
|
21485
23117
|
"type": "string",
|
|
21486
23118
|
"pattern": "^[1-9]\\d{0,2}$",
|
|
21487
23119
|
"default": "1",
|
|
21488
|
-
"description": "1–999; default 1. Pages after the first cost one extra upstream request."
|
|
23120
|
+
"description": "1–999; default 1. Pages after the first read the guest feed; without remembered or supplied identifiers they cost one extra upstream request for the company page."
|
|
23121
|
+
},
|
|
23122
|
+
"organization_id": {
|
|
23123
|
+
"type": "string",
|
|
23124
|
+
"pattern": "^\\d{1,20}$",
|
|
23125
|
+
"description": "Optional numeric organization id (the company route's id). With pagination_token and page ≥ 2 the feed is read directly."
|
|
23126
|
+
},
|
|
23127
|
+
"pagination_token": {
|
|
23128
|
+
"type": "string",
|
|
23129
|
+
"pattern": "^[A-Za-z0-9._-]{1,200}$",
|
|
23130
|
+
"description": "Optional guest-feed token (the company route's paginationToken), 1–200 URL-safe characters. Rejected tokens fall back to one company page read."
|
|
21489
23131
|
}
|
|
21490
23132
|
},
|
|
21491
23133
|
"required": ["url"],
|
|
@@ -25324,7 +26966,7 @@
|
|
|
25324
26966
|
"operation": "pinterestBoard",
|
|
25325
26967
|
"method": "GET",
|
|
25326
26968
|
"path": "/v1/pinterest/board",
|
|
25327
|
-
"description": "Retrieve a public board and a page of its pins, including board sections and metadata. Pass cursor for the next page and use trim for compact pin records. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
26969
|
+
"description": "Retrieve a public board and a page of its pins, including board sections and metadata. Pass cursor and an optional board_id for the next page and use trim for compact pin records. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
25328
26970
|
"inputSchema": {
|
|
25329
26971
|
"type": "object",
|
|
25330
26972
|
"properties": {
|
|
@@ -25341,6 +26983,11 @@
|
|
|
25341
26983
|
"pattern": "^[A-Za-z0-9_~+/=|.*%-]+$",
|
|
25342
26984
|
"description": "Optional source bookmark returned by the previous response. Reuse with the same query, handle, or board. Null means end of results unless coverage warns pagination_unavailable. Source cursors can expire. Maximum 16,384 characters."
|
|
25343
26985
|
},
|
|
26986
|
+
"board_id": {
|
|
26987
|
+
"type": "string",
|
|
26988
|
+
"pattern": "^\\d{1,30}$",
|
|
26989
|
+
"description": "Optional numeric board id (board.id on every returned pin). With cursor, the continuation reads the board feed directly and still checks every pin against this id; without cursor the board is resolved as on the first page."
|
|
26990
|
+
},
|
|
25344
26991
|
"trim": {
|
|
25345
26992
|
"type": "string",
|
|
25346
26993
|
"enum": ["true", "false"],
|
|
@@ -28741,6 +30388,14 @@
|
|
|
28741
30388
|
{ "type": "string", "enum": ["true", "false"], "x-runtime-refinement": true }
|
|
28742
30389
|
],
|
|
28743
30390
|
"default": false
|
|
30391
|
+
},
|
|
30392
|
+
"include_post": {
|
|
30393
|
+
"anyOf": [
|
|
30394
|
+
{ "type": "boolean" },
|
|
30395
|
+
{ "type": "string", "enum": ["true", "false"], "x-runtime-refinement": true }
|
|
30396
|
+
],
|
|
30397
|
+
"default": true,
|
|
30398
|
+
"description": "Defaults to true. With a cursor, false skips the post reload and returns post as null with the post_omitted coverage reason (status partial); without a cursor the first page keeps the post."
|
|
28744
30399
|
}
|
|
28745
30400
|
},
|
|
28746
30401
|
"required": ["url"],
|
|
@@ -28833,6 +30488,14 @@
|
|
|
28833
30488
|
{ "type": "string", "enum": ["true", "false"], "x-runtime-refinement": true }
|
|
28834
30489
|
],
|
|
28835
30490
|
"default": false
|
|
30491
|
+
},
|
|
30492
|
+
"include_post": {
|
|
30493
|
+
"anyOf": [
|
|
30494
|
+
{ "type": "boolean" },
|
|
30495
|
+
{ "type": "string", "enum": ["true", "false"], "x-runtime-refinement": true }
|
|
30496
|
+
],
|
|
30497
|
+
"default": true,
|
|
30498
|
+
"description": "Defaults to true. With a cursor, false skips the post reload and returns post as null with the post_omitted coverage reason (status partial); without a cursor the first page keeps the post."
|
|
28836
30499
|
}
|
|
28837
30500
|
},
|
|
28838
30501
|
"required": ["url"],
|
|
@@ -33669,7 +35332,7 @@
|
|
|
33669
35332
|
"type": "integer",
|
|
33670
35333
|
"minimum": 1,
|
|
33671
35334
|
"maximum": 10,
|
|
33672
|
-
"description": "Most accounts to return, 1–10 (default
|
|
35335
|
+
"description": "Most accounts to return, 1–10 (default 5; each account is one profile page read). The index is asked for 20 profile pages; permalinks beyond the limit set users_truncated."
|
|
33673
35336
|
}
|
|
33674
35337
|
},
|
|
33675
35338
|
"required": ["query"],
|
|
@@ -40668,16 +42331,206 @@
|
|
|
40668
42331
|
"upstream_challenged",
|
|
40669
42332
|
"upstream_rate_limited",
|
|
40670
42333
|
"upstream_error",
|
|
40671
|
-
"upstream_graphql_error",
|
|
42334
|
+
"upstream_graphql_error",
|
|
42335
|
+
"unsupported_page",
|
|
42336
|
+
"restricted_page",
|
|
42337
|
+
"response_too_large",
|
|
42338
|
+
"unsafe_redirect",
|
|
42339
|
+
"request_limit",
|
|
42340
|
+
"timeout",
|
|
42341
|
+
"busy",
|
|
42342
|
+
"payload_too_complex",
|
|
42343
|
+
"public_client_unavailable"
|
|
42344
|
+
]
|
|
42345
|
+
},
|
|
42346
|
+
"message": { "type": "string" }
|
|
42347
|
+
},
|
|
42348
|
+
"required": ["code", "message"],
|
|
42349
|
+
"additionalProperties": false
|
|
42350
|
+
}
|
|
42351
|
+
},
|
|
42352
|
+
"required": ["requestId", "accounting", "success", "status", "failure"],
|
|
42353
|
+
"additionalProperties": false
|
|
42354
|
+
}
|
|
42355
|
+
]
|
|
42356
|
+
}
|
|
42357
|
+
},
|
|
42358
|
+
{
|
|
42359
|
+
"platform": "vinted",
|
|
42360
|
+
"action": "categories",
|
|
42361
|
+
"operation": "vintedCategories",
|
|
42362
|
+
"method": "GET",
|
|
42363
|
+
"path": "/v1/vinted/categories",
|
|
42364
|
+
"description": "Discover marketplace category IDs, names, URLs, images and parent-child relationships for building category filters and searching listings. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
42365
|
+
"inputSchema": {
|
|
42366
|
+
"type": "object",
|
|
42367
|
+
"properties": {
|
|
42368
|
+
"domain": {
|
|
42369
|
+
"type": "string",
|
|
42370
|
+
"enum": [
|
|
42371
|
+
"com",
|
|
42372
|
+
"at",
|
|
42373
|
+
"be",
|
|
42374
|
+
"com.au",
|
|
42375
|
+
"cz",
|
|
42376
|
+
"de",
|
|
42377
|
+
"dk",
|
|
42378
|
+
"ee",
|
|
42379
|
+
"es",
|
|
42380
|
+
"fi",
|
|
42381
|
+
"fr",
|
|
42382
|
+
"gr",
|
|
42383
|
+
"hr",
|
|
42384
|
+
"hu",
|
|
42385
|
+
"ie",
|
|
42386
|
+
"it",
|
|
42387
|
+
"lt",
|
|
42388
|
+
"lu",
|
|
42389
|
+
"lv",
|
|
42390
|
+
"nl",
|
|
42391
|
+
"pl",
|
|
42392
|
+
"pt",
|
|
42393
|
+
"ro",
|
|
42394
|
+
"se",
|
|
42395
|
+
"si",
|
|
42396
|
+
"sk",
|
|
42397
|
+
"co.uk"
|
|
42398
|
+
],
|
|
42399
|
+
"description": "Marketplace domain suffix."
|
|
42400
|
+
}
|
|
42401
|
+
},
|
|
42402
|
+
"required": [],
|
|
42403
|
+
"additionalProperties": false
|
|
42404
|
+
},
|
|
42405
|
+
"outputSchema": {
|
|
42406
|
+
"anyOf": [
|
|
42407
|
+
{
|
|
42408
|
+
"type": "object",
|
|
42409
|
+
"properties": {
|
|
42410
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
42411
|
+
"accounting": {
|
|
42412
|
+
"type": "object",
|
|
42413
|
+
"properties": {
|
|
42414
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
42415
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
42416
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
42417
|
+
},
|
|
42418
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
42419
|
+
"additionalProperties": false
|
|
42420
|
+
},
|
|
42421
|
+
"success": { "type": "boolean", "const": true },
|
|
42422
|
+
"status": { "type": "string", "enum": ["success", "partial"] },
|
|
42423
|
+
"sourceUrl": { "type": "string", "format": "uri" },
|
|
42424
|
+
"fetchedAt": { "type": "string", "format": "date-time" },
|
|
42425
|
+
"coverage": {
|
|
42426
|
+
"type": "object",
|
|
42427
|
+
"properties": {
|
|
42428
|
+
"source": { "type": "string", "enum": ["public_api", "public_page"] },
|
|
42429
|
+
"complete": { "type": "boolean" },
|
|
42430
|
+
"warnings": { "type": "array", "items": { "type": "string" } }
|
|
42431
|
+
},
|
|
42432
|
+
"required": ["source", "complete", "warnings"],
|
|
42433
|
+
"additionalProperties": false
|
|
42434
|
+
},
|
|
42435
|
+
"domain": {
|
|
42436
|
+
"type": "string",
|
|
42437
|
+
"enum": [
|
|
42438
|
+
"com",
|
|
42439
|
+
"at",
|
|
42440
|
+
"be",
|
|
42441
|
+
"com.au",
|
|
42442
|
+
"cz",
|
|
42443
|
+
"de",
|
|
42444
|
+
"dk",
|
|
42445
|
+
"ee",
|
|
42446
|
+
"es",
|
|
42447
|
+
"fi",
|
|
42448
|
+
"fr",
|
|
42449
|
+
"gr",
|
|
42450
|
+
"hr",
|
|
42451
|
+
"hu",
|
|
42452
|
+
"ie",
|
|
42453
|
+
"it",
|
|
42454
|
+
"lt",
|
|
42455
|
+
"lu",
|
|
42456
|
+
"lv",
|
|
42457
|
+
"nl",
|
|
42458
|
+
"pl",
|
|
42459
|
+
"pt",
|
|
42460
|
+
"ro",
|
|
42461
|
+
"se",
|
|
42462
|
+
"si",
|
|
42463
|
+
"sk",
|
|
42464
|
+
"co.uk"
|
|
42465
|
+
]
|
|
42466
|
+
},
|
|
42467
|
+
"rootIds": { "type": "array", "items": { "type": "string" }, "maxItems": 4096 },
|
|
42468
|
+
"categories": {
|
|
42469
|
+
"type": "array",
|
|
42470
|
+
"items": {
|
|
42471
|
+
"type": "object",
|
|
42472
|
+
"properties": {
|
|
42473
|
+
"id": { "type": "string" },
|
|
42474
|
+
"title": { "type": "string" },
|
|
42475
|
+
"url": { "type": "string", "format": "uri" },
|
|
42476
|
+
"parentId": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
42477
|
+
"childIds": { "type": "array", "items": { "type": "string" }, "maxItems": 4096 },
|
|
42478
|
+
"photoUrl": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
42479
|
+
},
|
|
42480
|
+
"required": ["id", "title", "url", "parentId", "childIds", "photoUrl"],
|
|
42481
|
+
"additionalProperties": false
|
|
42482
|
+
},
|
|
42483
|
+
"maxItems": 4096
|
|
42484
|
+
}
|
|
42485
|
+
},
|
|
42486
|
+
"required": [
|
|
42487
|
+
"requestId",
|
|
42488
|
+
"accounting",
|
|
42489
|
+
"success",
|
|
42490
|
+
"status",
|
|
42491
|
+
"sourceUrl",
|
|
42492
|
+
"fetchedAt",
|
|
42493
|
+
"coverage",
|
|
42494
|
+
"domain",
|
|
42495
|
+
"rootIds",
|
|
42496
|
+
"categories"
|
|
42497
|
+
],
|
|
42498
|
+
"additionalProperties": false
|
|
42499
|
+
},
|
|
42500
|
+
{
|
|
42501
|
+
"type": "object",
|
|
42502
|
+
"properties": {
|
|
42503
|
+
"requestId": { "type": "string", "format": "uuid" },
|
|
42504
|
+
"accounting": {
|
|
42505
|
+
"type": "object",
|
|
42506
|
+
"properties": {
|
|
42507
|
+
"upstreamRequests": { "type": "integer", "minimum": 0 },
|
|
42508
|
+
"responseBytes": { "type": "integer", "minimum": 0 },
|
|
42509
|
+
"durationMs": { "type": "number", "minimum": 0 }
|
|
42510
|
+
},
|
|
42511
|
+
"required": ["upstreamRequests", "responseBytes", "durationMs"],
|
|
42512
|
+
"additionalProperties": false
|
|
42513
|
+
},
|
|
42514
|
+
"success": { "type": "boolean", "const": false },
|
|
42515
|
+
"status": { "type": "string", "enum": ["failed", "challenged"] },
|
|
42516
|
+
"failure": {
|
|
42517
|
+
"type": "object",
|
|
42518
|
+
"properties": {
|
|
42519
|
+
"code": {
|
|
42520
|
+
"type": "string",
|
|
42521
|
+
"enum": [
|
|
42522
|
+
"invalid_request",
|
|
42523
|
+
"unauthorized",
|
|
42524
|
+
"not_found",
|
|
42525
|
+
"upstream_challenged",
|
|
42526
|
+
"upstream_rate_limited",
|
|
42527
|
+
"upstream_error",
|
|
40672
42528
|
"unsupported_page",
|
|
40673
|
-
"restricted_page",
|
|
40674
42529
|
"response_too_large",
|
|
40675
42530
|
"unsafe_redirect",
|
|
40676
42531
|
"request_limit",
|
|
40677
42532
|
"timeout",
|
|
40678
|
-
"busy"
|
|
40679
|
-
"payload_too_complex",
|
|
40680
|
-
"public_client_unavailable"
|
|
42533
|
+
"busy"
|
|
40681
42534
|
]
|
|
40682
42535
|
},
|
|
40683
42536
|
"message": { "type": "string" }
|
|
@@ -40698,7 +42551,7 @@
|
|
|
40698
42551
|
"operation": "vintedItem",
|
|
40699
42552
|
"method": "GET",
|
|
40700
42553
|
"path": "/v1/vinted/item",
|
|
40701
|
-
"description": "Read
|
|
42554
|
+
"description": "Read item photos, descriptions, category-specific attributes including book ISBN and language, seller badges, availability and separate item, buyer-protection and shipping prices. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
40702
42555
|
"inputSchema": {
|
|
40703
42556
|
"type": "object",
|
|
40704
42557
|
"properties": {
|
|
@@ -40863,6 +42716,281 @@
|
|
|
40863
42716
|
{ "type": "null" }
|
|
40864
42717
|
]
|
|
40865
42718
|
},
|
|
42719
|
+
"pricing": {
|
|
42720
|
+
"anyOf": [
|
|
42721
|
+
{
|
|
42722
|
+
"type": "object",
|
|
42723
|
+
"properties": {
|
|
42724
|
+
"originalAskingPrice": {
|
|
42725
|
+
"anyOf": [
|
|
42726
|
+
{
|
|
42727
|
+
"type": "object",
|
|
42728
|
+
"properties": {
|
|
42729
|
+
"amount": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
42730
|
+
"currency": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
42731
|
+
},
|
|
42732
|
+
"required": ["amount", "currency"],
|
|
42733
|
+
"additionalProperties": false
|
|
42734
|
+
},
|
|
42735
|
+
{ "type": "null" }
|
|
42736
|
+
]
|
|
42737
|
+
},
|
|
42738
|
+
"sellerOriginalAskingPrice": {
|
|
42739
|
+
"anyOf": [
|
|
42740
|
+
{
|
|
42741
|
+
"type": "object",
|
|
42742
|
+
"properties": {
|
|
42743
|
+
"amount": { "anyOf": [{ "type": "number" }, { "type": "null" }] },
|
|
42744
|
+
"currency": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
42745
|
+
},
|
|
42746
|
+
"required": ["amount", "currency"],
|
|
42747
|
+
"additionalProperties": false
|
|
42748
|
+
},
|
|
42749
|
+
{ "type": "null" }
|
|
42750
|
+
]
|
|
42751
|
+
},
|
|
42752
|
+
"buyerProtection": {
|
|
42753
|
+
"anyOf": [
|
|
42754
|
+
{
|
|
42755
|
+
"type": "object",
|
|
42756
|
+
"properties": {
|
|
42757
|
+
"originalPrice": {
|
|
42758
|
+
"anyOf": [
|
|
42759
|
+
{
|
|
42760
|
+
"type": "object",
|
|
42761
|
+
"properties": {
|
|
42762
|
+
"amount": {
|
|
42763
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42764
|
+
},
|
|
42765
|
+
"currency": {
|
|
42766
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42767
|
+
}
|
|
42768
|
+
},
|
|
42769
|
+
"required": ["amount", "currency"],
|
|
42770
|
+
"additionalProperties": false
|
|
42771
|
+
},
|
|
42772
|
+
{ "type": "null" }
|
|
42773
|
+
]
|
|
42774
|
+
},
|
|
42775
|
+
"finalPrice": {
|
|
42776
|
+
"anyOf": [
|
|
42777
|
+
{
|
|
42778
|
+
"type": "object",
|
|
42779
|
+
"properties": {
|
|
42780
|
+
"amount": {
|
|
42781
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42782
|
+
},
|
|
42783
|
+
"currency": {
|
|
42784
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42785
|
+
}
|
|
42786
|
+
},
|
|
42787
|
+
"required": ["amount", "currency"],
|
|
42788
|
+
"additionalProperties": false
|
|
42789
|
+
},
|
|
42790
|
+
{ "type": "null" }
|
|
42791
|
+
]
|
|
42792
|
+
},
|
|
42793
|
+
"discount": {
|
|
42794
|
+
"anyOf": [
|
|
42795
|
+
{
|
|
42796
|
+
"type": "object",
|
|
42797
|
+
"properties": {
|
|
42798
|
+
"amount": {
|
|
42799
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42800
|
+
},
|
|
42801
|
+
"currency": {
|
|
42802
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42803
|
+
}
|
|
42804
|
+
},
|
|
42805
|
+
"required": ["amount", "currency"],
|
|
42806
|
+
"additionalProperties": false
|
|
42807
|
+
},
|
|
42808
|
+
{ "type": "null" }
|
|
42809
|
+
]
|
|
42810
|
+
},
|
|
42811
|
+
"discountPercentage": {
|
|
42812
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42813
|
+
},
|
|
42814
|
+
"maxDiscountPercentage": {
|
|
42815
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42816
|
+
},
|
|
42817
|
+
"isFree": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
42818
|
+
"deliveryType": {
|
|
42819
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42820
|
+
},
|
|
42821
|
+
"hasMultipleOptions": {
|
|
42822
|
+
"anyOf": [{ "type": "boolean" }, { "type": "null" }]
|
|
42823
|
+
},
|
|
42824
|
+
"discountStartAt": {
|
|
42825
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42826
|
+
},
|
|
42827
|
+
"discountEndAt": {
|
|
42828
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42829
|
+
},
|
|
42830
|
+
"lowestPrice30Days": {
|
|
42831
|
+
"anyOf": [
|
|
42832
|
+
{
|
|
42833
|
+
"type": "object",
|
|
42834
|
+
"properties": {
|
|
42835
|
+
"amount": {
|
|
42836
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42837
|
+
},
|
|
42838
|
+
"currency": {
|
|
42839
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42840
|
+
}
|
|
42841
|
+
},
|
|
42842
|
+
"required": ["amount", "currency"],
|
|
42843
|
+
"additionalProperties": false
|
|
42844
|
+
},
|
|
42845
|
+
{ "type": "null" }
|
|
42846
|
+
]
|
|
42847
|
+
}
|
|
42848
|
+
},
|
|
42849
|
+
"required": [
|
|
42850
|
+
"originalPrice",
|
|
42851
|
+
"finalPrice",
|
|
42852
|
+
"discount",
|
|
42853
|
+
"discountPercentage",
|
|
42854
|
+
"maxDiscountPercentage",
|
|
42855
|
+
"isFree",
|
|
42856
|
+
"deliveryType",
|
|
42857
|
+
"hasMultipleOptions",
|
|
42858
|
+
"discountStartAt",
|
|
42859
|
+
"discountEndAt",
|
|
42860
|
+
"lowestPrice30Days"
|
|
42861
|
+
],
|
|
42862
|
+
"additionalProperties": false
|
|
42863
|
+
},
|
|
42864
|
+
{ "type": "null" }
|
|
42865
|
+
]
|
|
42866
|
+
},
|
|
42867
|
+
"shipping": {
|
|
42868
|
+
"anyOf": [
|
|
42869
|
+
{
|
|
42870
|
+
"type": "object",
|
|
42871
|
+
"properties": {
|
|
42872
|
+
"originalPrice": {
|
|
42873
|
+
"anyOf": [
|
|
42874
|
+
{
|
|
42875
|
+
"type": "object",
|
|
42876
|
+
"properties": {
|
|
42877
|
+
"amount": {
|
|
42878
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42879
|
+
},
|
|
42880
|
+
"currency": {
|
|
42881
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42882
|
+
}
|
|
42883
|
+
},
|
|
42884
|
+
"required": ["amount", "currency"],
|
|
42885
|
+
"additionalProperties": false
|
|
42886
|
+
},
|
|
42887
|
+
{ "type": "null" }
|
|
42888
|
+
]
|
|
42889
|
+
},
|
|
42890
|
+
"finalPrice": {
|
|
42891
|
+
"anyOf": [
|
|
42892
|
+
{
|
|
42893
|
+
"type": "object",
|
|
42894
|
+
"properties": {
|
|
42895
|
+
"amount": {
|
|
42896
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42897
|
+
},
|
|
42898
|
+
"currency": {
|
|
42899
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42900
|
+
}
|
|
42901
|
+
},
|
|
42902
|
+
"required": ["amount", "currency"],
|
|
42903
|
+
"additionalProperties": false
|
|
42904
|
+
},
|
|
42905
|
+
{ "type": "null" }
|
|
42906
|
+
]
|
|
42907
|
+
},
|
|
42908
|
+
"discount": {
|
|
42909
|
+
"anyOf": [
|
|
42910
|
+
{
|
|
42911
|
+
"type": "object",
|
|
42912
|
+
"properties": {
|
|
42913
|
+
"amount": {
|
|
42914
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42915
|
+
},
|
|
42916
|
+
"currency": {
|
|
42917
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42918
|
+
}
|
|
42919
|
+
},
|
|
42920
|
+
"required": ["amount", "currency"],
|
|
42921
|
+
"additionalProperties": false
|
|
42922
|
+
},
|
|
42923
|
+
{ "type": "null" }
|
|
42924
|
+
]
|
|
42925
|
+
},
|
|
42926
|
+
"discountPercentage": {
|
|
42927
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42928
|
+
},
|
|
42929
|
+
"maxDiscountPercentage": {
|
|
42930
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42931
|
+
},
|
|
42932
|
+
"isFree": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
42933
|
+
"deliveryType": {
|
|
42934
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42935
|
+
},
|
|
42936
|
+
"hasMultipleOptions": {
|
|
42937
|
+
"anyOf": [{ "type": "boolean" }, { "type": "null" }]
|
|
42938
|
+
},
|
|
42939
|
+
"discountStartAt": {
|
|
42940
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42941
|
+
},
|
|
42942
|
+
"discountEndAt": {
|
|
42943
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42944
|
+
},
|
|
42945
|
+
"lowestPrice30Days": {
|
|
42946
|
+
"anyOf": [
|
|
42947
|
+
{
|
|
42948
|
+
"type": "object",
|
|
42949
|
+
"properties": {
|
|
42950
|
+
"amount": {
|
|
42951
|
+
"anyOf": [{ "type": "number" }, { "type": "null" }]
|
|
42952
|
+
},
|
|
42953
|
+
"currency": {
|
|
42954
|
+
"anyOf": [{ "type": "string" }, { "type": "null" }]
|
|
42955
|
+
}
|
|
42956
|
+
},
|
|
42957
|
+
"required": ["amount", "currency"],
|
|
42958
|
+
"additionalProperties": false
|
|
42959
|
+
},
|
|
42960
|
+
{ "type": "null" }
|
|
42961
|
+
]
|
|
42962
|
+
}
|
|
42963
|
+
},
|
|
42964
|
+
"required": [
|
|
42965
|
+
"originalPrice",
|
|
42966
|
+
"finalPrice",
|
|
42967
|
+
"discount",
|
|
42968
|
+
"discountPercentage",
|
|
42969
|
+
"maxDiscountPercentage",
|
|
42970
|
+
"isFree",
|
|
42971
|
+
"deliveryType",
|
|
42972
|
+
"hasMultipleOptions",
|
|
42973
|
+
"discountStartAt",
|
|
42974
|
+
"discountEndAt",
|
|
42975
|
+
"lowestPrice30Days"
|
|
42976
|
+
],
|
|
42977
|
+
"additionalProperties": false
|
|
42978
|
+
},
|
|
42979
|
+
{ "type": "null" }
|
|
42980
|
+
]
|
|
42981
|
+
}
|
|
42982
|
+
},
|
|
42983
|
+
"required": [
|
|
42984
|
+
"originalAskingPrice",
|
|
42985
|
+
"sellerOriginalAskingPrice",
|
|
42986
|
+
"buyerProtection",
|
|
42987
|
+
"shipping"
|
|
42988
|
+
],
|
|
42989
|
+
"additionalProperties": false
|
|
42990
|
+
},
|
|
42991
|
+
{ "type": "null" }
|
|
42992
|
+
]
|
|
42993
|
+
},
|
|
40866
42994
|
"shipping": {
|
|
40867
42995
|
"anyOf": [
|
|
40868
42996
|
{
|
|
@@ -40942,6 +43070,25 @@
|
|
|
40942
43070
|
"material": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
40943
43071
|
"color": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
40944
43072
|
"uploadedText": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
43073
|
+
"attributes": {
|
|
43074
|
+
"type": "array",
|
|
43075
|
+
"items": {
|
|
43076
|
+
"type": "object",
|
|
43077
|
+
"properties": {
|
|
43078
|
+
"code": { "type": "string" },
|
|
43079
|
+
"title": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
43080
|
+
"value": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
43081
|
+
"id": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
43082
|
+
"url": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
43083
|
+
},
|
|
43084
|
+
"required": ["code", "title", "value", "id", "url"],
|
|
43085
|
+
"additionalProperties": false
|
|
43086
|
+
},
|
|
43087
|
+
"maxItems": 40
|
|
43088
|
+
},
|
|
43089
|
+
"isbn": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
43090
|
+
"bookTitle": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
43091
|
+
"language": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
40945
43092
|
"categoryPath": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
40946
43093
|
"catalogId": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
40947
43094
|
"breadcrumbs": {
|
|
@@ -41064,6 +43211,7 @@
|
|
|
41064
43211
|
"price",
|
|
41065
43212
|
"totalPrice",
|
|
41066
43213
|
"buyerProtectionFee",
|
|
43214
|
+
"pricing",
|
|
41067
43215
|
"shipping",
|
|
41068
43216
|
"availability",
|
|
41069
43217
|
"condition",
|
|
@@ -41073,6 +43221,10 @@
|
|
|
41073
43221
|
"material",
|
|
41074
43222
|
"color",
|
|
41075
43223
|
"uploadedText",
|
|
43224
|
+
"attributes",
|
|
43225
|
+
"isbn",
|
|
43226
|
+
"bookTitle",
|
|
43227
|
+
"language",
|
|
41076
43228
|
"categoryPath",
|
|
41077
43229
|
"catalogId",
|
|
41078
43230
|
"breadcrumbs",
|
|
@@ -41155,7 +43307,7 @@
|
|
|
41155
43307
|
"operation": "vintedProfile",
|
|
41156
43308
|
"method": "GET",
|
|
41157
43309
|
"path": "/v1/vinted/profile",
|
|
41158
|
-
"description": "Read a
|
|
43310
|
+
"description": "Read a member profile with identity, activity and online status, item and follower counts, feedback reputation, bundle discounts and verification flags. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
41159
43311
|
"inputSchema": {
|
|
41160
43312
|
"type": "object",
|
|
41161
43313
|
"properties": {
|
|
@@ -41340,6 +43492,7 @@
|
|
|
41340
43492
|
"givenItemCount": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
41341
43493
|
"takenItemCount": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
41342
43494
|
"isOnHoliday": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
43495
|
+
"isOnline": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
41343
43496
|
"isBanned": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
41344
43497
|
"accountStatus": { "anyOf": [{ "type": "integer" }, { "type": "null" }] },
|
|
41345
43498
|
"moderator": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
@@ -41436,6 +43589,7 @@
|
|
|
41436
43589
|
"givenItemCount",
|
|
41437
43590
|
"takenItemCount",
|
|
41438
43591
|
"isOnHoliday",
|
|
43592
|
+
"isOnline",
|
|
41439
43593
|
"isBanned",
|
|
41440
43594
|
"accountStatus",
|
|
41441
43595
|
"moderator",
|
|
@@ -41844,7 +43998,7 @@
|
|
|
41844
43998
|
"operation": "vintedUserItems",
|
|
41845
43999
|
"method": "GET",
|
|
41846
44000
|
"path": "/v1/vinted/user/items",
|
|
41847
|
-
"description": "Page through
|
|
44001
|
+
"description": "Page through a member’s wardrobe with listing prices, photos, reserved and closed flags, processing status and bulky-item indicators. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
41848
44002
|
"inputSchema": {
|
|
41849
44003
|
"type": "object",
|
|
41850
44004
|
"properties": {
|
|
@@ -42038,6 +44192,18 @@
|
|
|
42038
44192
|
"isClosed": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
42039
44193
|
"isHidden": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
42040
44194
|
"isDraft": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
44195
|
+
"transactionPermitted": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
44196
|
+
"isProcessing": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
44197
|
+
"isHeavyBulky": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
44198
|
+
"displayLines": {
|
|
44199
|
+
"type": "object",
|
|
44200
|
+
"properties": {
|
|
44201
|
+
"first": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
44202
|
+
"second": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
44203
|
+
},
|
|
44204
|
+
"required": ["first", "second"],
|
|
44205
|
+
"additionalProperties": false
|
|
44206
|
+
},
|
|
42041
44207
|
"photo": {
|
|
42042
44208
|
"anyOf": [
|
|
42043
44209
|
{
|
|
@@ -42172,6 +44338,10 @@
|
|
|
42172
44338
|
"isClosed",
|
|
42173
44339
|
"isHidden",
|
|
42174
44340
|
"isDraft",
|
|
44341
|
+
"transactionPermitted",
|
|
44342
|
+
"isProcessing",
|
|
44343
|
+
"isHeavyBulky",
|
|
44344
|
+
"displayLines",
|
|
42175
44345
|
"photo",
|
|
42176
44346
|
"photos",
|
|
42177
44347
|
"user"
|
|
@@ -42487,7 +44657,7 @@
|
|
|
42487
44657
|
"operation": "vintedSearch",
|
|
42488
44658
|
"method": "GET",
|
|
42489
44659
|
"path": "/v1/vinted/search",
|
|
42490
|
-
"description": "Search listings
|
|
44660
|
+
"description": "Search listings by keyword, category, brand, condition, colour, size, material and price range, with display labels and pagination. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
42491
44661
|
"inputSchema": {
|
|
42492
44662
|
"type": "object",
|
|
42493
44663
|
"properties": {
|
|
@@ -42500,7 +44670,7 @@
|
|
|
42500
44670
|
"catalog_ids": {
|
|
42501
44671
|
"type": "string",
|
|
42502
44672
|
"pattern": "^[1-9]\\d{0,9}(?:,[1-9]\\d{0,9}){0,19}$",
|
|
42503
|
-
"description": "Comma-separated category
|
|
44673
|
+
"description": "Comma-separated category IDs; discover IDs with /v1/vinted/categories."
|
|
42504
44674
|
},
|
|
42505
44675
|
"brand_ids": {
|
|
42506
44676
|
"type": "string",
|
|
@@ -42721,6 +44891,18 @@
|
|
|
42721
44891
|
"isClosed": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
42722
44892
|
"isHidden": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
42723
44893
|
"isDraft": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
44894
|
+
"transactionPermitted": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
44895
|
+
"isProcessing": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
44896
|
+
"isHeavyBulky": { "anyOf": [{ "type": "boolean" }, { "type": "null" }] },
|
|
44897
|
+
"displayLines": {
|
|
44898
|
+
"type": "object",
|
|
44899
|
+
"properties": {
|
|
44900
|
+
"first": { "anyOf": [{ "type": "string" }, { "type": "null" }] },
|
|
44901
|
+
"second": { "anyOf": [{ "type": "string" }, { "type": "null" }] }
|
|
44902
|
+
},
|
|
44903
|
+
"required": ["first", "second"],
|
|
44904
|
+
"additionalProperties": false
|
|
44905
|
+
},
|
|
42724
44906
|
"photo": {
|
|
42725
44907
|
"anyOf": [
|
|
42726
44908
|
{
|
|
@@ -42855,6 +45037,10 @@
|
|
|
42855
45037
|
"isClosed",
|
|
42856
45038
|
"isHidden",
|
|
42857
45039
|
"isDraft",
|
|
45040
|
+
"transactionPermitted",
|
|
45041
|
+
"isProcessing",
|
|
45042
|
+
"isHeavyBulky",
|
|
45043
|
+
"displayLines",
|
|
42858
45044
|
"photo",
|
|
42859
45045
|
"photos",
|
|
42860
45046
|
"user"
|
|
@@ -48020,7 +50206,7 @@
|
|
|
48020
50206
|
"coverage": {
|
|
48021
50207
|
"type": "object",
|
|
48022
50208
|
"properties": {
|
|
48023
|
-
"source": { "type": "string", "
|
|
50209
|
+
"source": { "type": "string", "enum": ["public_page", "public_api"] },
|
|
48024
50210
|
"complete": { "type": "boolean" },
|
|
48025
50211
|
"warnings": {
|
|
48026
50212
|
"type": "array",
|
|
@@ -48034,7 +50220,8 @@
|
|
|
48034
50220
|
"playlist_truncated",
|
|
48035
50221
|
"transcript_unavailable",
|
|
48036
50222
|
"sequence_incomplete",
|
|
48037
|
-
"sort_unavailable"
|
|
50223
|
+
"sort_unavailable",
|
|
50224
|
+
"watch_next_omitted"
|
|
48038
50225
|
]
|
|
48039
50226
|
},
|
|
48040
50227
|
"maxItems": 8
|
|
@@ -48233,7 +50420,8 @@
|
|
|
48233
50420
|
"playlist_truncated",
|
|
48234
50421
|
"transcript_unavailable",
|
|
48235
50422
|
"sequence_incomplete",
|
|
48236
|
-
"sort_unavailable"
|
|
50423
|
+
"sort_unavailable",
|
|
50424
|
+
"watch_next_omitted"
|
|
48237
50425
|
]
|
|
48238
50426
|
},
|
|
48239
50427
|
"maxItems": 8
|
|
@@ -48420,7 +50608,8 @@
|
|
|
48420
50608
|
"playlist_truncated",
|
|
48421
50609
|
"transcript_unavailable",
|
|
48422
50610
|
"sequence_incomplete",
|
|
48423
|
-
"sort_unavailable"
|
|
50611
|
+
"sort_unavailable",
|
|
50612
|
+
"watch_next_omitted"
|
|
48424
50613
|
]
|
|
48425
50614
|
},
|
|
48426
50615
|
"maxItems": 8
|
|
@@ -48862,7 +51051,8 @@
|
|
|
48862
51051
|
"playlist_truncated",
|
|
48863
51052
|
"transcript_unavailable",
|
|
48864
51053
|
"sequence_incomplete",
|
|
48865
|
-
"sort_unavailable"
|
|
51054
|
+
"sort_unavailable",
|
|
51055
|
+
"watch_next_omitted"
|
|
48866
51056
|
]
|
|
48867
51057
|
},
|
|
48868
51058
|
"maxItems": 8
|
|
@@ -49071,7 +51261,8 @@
|
|
|
49071
51261
|
"playlist_truncated",
|
|
49072
51262
|
"transcript_unavailable",
|
|
49073
51263
|
"sequence_incomplete",
|
|
49074
|
-
"sort_unavailable"
|
|
51264
|
+
"sort_unavailable",
|
|
51265
|
+
"watch_next_omitted"
|
|
49075
51266
|
]
|
|
49076
51267
|
},
|
|
49077
51268
|
"maxItems": 8
|
|
@@ -49233,7 +51424,8 @@
|
|
|
49233
51424
|
"playlist_truncated",
|
|
49234
51425
|
"transcript_unavailable",
|
|
49235
51426
|
"sequence_incomplete",
|
|
49236
|
-
"sort_unavailable"
|
|
51427
|
+
"sort_unavailable",
|
|
51428
|
+
"watch_next_omitted"
|
|
49237
51429
|
]
|
|
49238
51430
|
},
|
|
49239
51431
|
"maxItems": 8
|
|
@@ -49441,7 +51633,8 @@
|
|
|
49441
51633
|
"playlist_truncated",
|
|
49442
51634
|
"transcript_unavailable",
|
|
49443
51635
|
"sequence_incomplete",
|
|
49444
|
-
"sort_unavailable"
|
|
51636
|
+
"sort_unavailable",
|
|
51637
|
+
"watch_next_omitted"
|
|
49445
51638
|
]
|
|
49446
51639
|
},
|
|
49447
51640
|
"maxItems": 8
|
|
@@ -49553,6 +51746,11 @@
|
|
|
49553
51746
|
"type": "string",
|
|
49554
51747
|
"enum": ["newest", "popular"],
|
|
49555
51748
|
"description": "newest (default) or popular. Popular reads the tab's Popular sort continuation (one extra upstream request)."
|
|
51749
|
+
},
|
|
51750
|
+
"extrasDetail": {
|
|
51751
|
+
"type": "string",
|
|
51752
|
+
"enum": ["full", "player"],
|
|
51753
|
+
"description": "full (default) reads the player and the watch-next data per Short; player reads only the player (one call per Short, about half the upstream bytes) and leaves commentCountText and commentCountInt null (description is then the player's raw text), with the coverage warning watch_next_omitted."
|
|
49556
51754
|
}
|
|
49557
51755
|
},
|
|
49558
51756
|
"required": [],
|
|
@@ -49993,7 +52191,8 @@
|
|
|
49993
52191
|
"playlist_truncated",
|
|
49994
52192
|
"transcript_unavailable",
|
|
49995
52193
|
"sequence_incomplete",
|
|
49996
|
-
"sort_unavailable"
|
|
52194
|
+
"sort_unavailable",
|
|
52195
|
+
"watch_next_omitted"
|
|
49997
52196
|
]
|
|
49998
52197
|
},
|
|
49999
52198
|
"maxItems": 8
|
|
@@ -50232,7 +52431,8 @@
|
|
|
50232
52431
|
"playlist_truncated",
|
|
50233
52432
|
"transcript_unavailable",
|
|
50234
52433
|
"sequence_incomplete",
|
|
50235
|
-
"sort_unavailable"
|
|
52434
|
+
"sort_unavailable",
|
|
52435
|
+
"watch_next_omitted"
|
|
50236
52436
|
]
|
|
50237
52437
|
},
|
|
50238
52438
|
"maxItems": 8
|
|
@@ -50778,7 +52978,8 @@
|
|
|
50778
52978
|
"playlist_truncated",
|
|
50779
52979
|
"transcript_unavailable",
|
|
50780
52980
|
"sequence_incomplete",
|
|
50781
|
-
"sort_unavailable"
|
|
52981
|
+
"sort_unavailable",
|
|
52982
|
+
"watch_next_omitted"
|
|
50782
52983
|
]
|
|
50783
52984
|
},
|
|
50784
52985
|
"maxItems": 8
|
|
@@ -51329,7 +53530,8 @@
|
|
|
51329
53530
|
"playlist_truncated",
|
|
51330
53531
|
"transcript_unavailable",
|
|
51331
53532
|
"sequence_incomplete",
|
|
51332
|
-
"sort_unavailable"
|
|
53533
|
+
"sort_unavailable",
|
|
53534
|
+
"watch_next_omitted"
|
|
51333
53535
|
]
|
|
51334
53536
|
},
|
|
51335
53537
|
"maxItems": 8
|
|
@@ -51415,7 +53617,7 @@
|
|
|
51415
53617
|
"operation": "youtubeChannelVideos",
|
|
51416
53618
|
"method": "GET",
|
|
51417
53619
|
"path": "/v1/youtube/channel-videos",
|
|
51418
|
-
"description": "Read one page of a channel's Videos tab (30 videos) in the list shape: videos with title, URL, thumbnail, channel, view count, relative publish time with its computed timestamp, duration and badges, plus the continuation token for the next page. sort=latest (default) or popular. includeExtras=true adds per-video description, like and comment counts, publish date, genre and duration from two public API reads per video. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
53620
|
+
"description": "Read one page of a channel's Videos tab (30 videos) in the list shape: videos with title, URL, thumbnail, channel, view count, relative publish time with its computed timestamp, duration and badges, plus the continuation token for the next page. sort=latest (default) or popular. includeExtras=true adds per-video description, like and comment counts, publish date, genre and duration from two public API reads per video; extrasDetail=player halves that to the player read alone. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
51419
53621
|
"inputSchema": {
|
|
51420
53622
|
"type": "object",
|
|
51421
53623
|
"properties": {
|
|
@@ -51450,6 +53652,11 @@
|
|
|
51450
53652
|
"type": "string",
|
|
51451
53653
|
"enum": ["true", "false"],
|
|
51452
53654
|
"description": "Set to true to read per-video details for every listed video (two small public API calls per video, issued together: the player metadata and the watch-next data; up to 48 videos, 12 at a time) and add description, commentCountText, commentCountInt, likeCountInt, likeCountText, publishDate (ISO 8601 with the channel's offset), genre, durationMs and durationFormatted to each video, and replace viewCountText/viewCountInt with the exact count. Defaults to false. Videos whose details could not be read keep null extras and the response is partial with extras_incomplete."
|
|
53655
|
+
},
|
|
53656
|
+
"extrasDetail": {
|
|
53657
|
+
"type": "string",
|
|
53658
|
+
"enum": ["full", "player"],
|
|
53659
|
+
"description": "full (default) reads the player and the watch-next data per video; player reads only the player (one call per video, about half the upstream bytes) and leaves the watch-next fields commentCountText and commentCountInt null (description is then the player's raw text), with the coverage warning watch_next_omitted. Requires includeExtras=true."
|
|
51453
53660
|
}
|
|
51454
53661
|
},
|
|
51455
53662
|
"required": [],
|
|
@@ -51890,7 +54097,8 @@
|
|
|
51890
54097
|
"playlist_truncated",
|
|
51891
54098
|
"transcript_unavailable",
|
|
51892
54099
|
"sequence_incomplete",
|
|
51893
|
-
"sort_unavailable"
|
|
54100
|
+
"sort_unavailable",
|
|
54101
|
+
"watch_next_omitted"
|
|
51894
54102
|
]
|
|
51895
54103
|
},
|
|
51896
54104
|
"maxItems": 8
|
|
@@ -52087,7 +54295,8 @@
|
|
|
52087
54295
|
"playlist_truncated",
|
|
52088
54296
|
"transcript_unavailable",
|
|
52089
54297
|
"sequence_incomplete",
|
|
52090
|
-
"sort_unavailable"
|
|
54298
|
+
"sort_unavailable",
|
|
54299
|
+
"watch_next_omitted"
|
|
52091
54300
|
]
|
|
52092
54301
|
},
|
|
52093
54302
|
"maxItems": 8
|
|
@@ -52290,7 +54499,8 @@
|
|
|
52290
54499
|
"playlist_truncated",
|
|
52291
54500
|
"transcript_unavailable",
|
|
52292
54501
|
"sequence_incomplete",
|
|
52293
|
-
"sort_unavailable"
|
|
54502
|
+
"sort_unavailable",
|
|
54503
|
+
"watch_next_omitted"
|
|
52294
54504
|
]
|
|
52295
54505
|
},
|
|
52296
54506
|
"maxItems": 8
|
|
@@ -52374,7 +54584,13 @@
|
|
|
52374
54584
|
"description": "Retrieve a batch of YouTube Shorts with titles, descriptions, engagement, publication dates, channels, chapters, genres and durations. Each successful request costs 1 account credit, including partial results. Failures cost 0. HTTP 402 means insufficient credits. Responses preserve status, coverage, null values and pagination tokens.",
|
|
52375
54585
|
"inputSchema": {
|
|
52376
54586
|
"type": "object",
|
|
52377
|
-
"properties": {
|
|
54587
|
+
"properties": {
|
|
54588
|
+
"extrasDetail": {
|
|
54589
|
+
"type": "string",
|
|
54590
|
+
"enum": ["full", "player"],
|
|
54591
|
+
"description": "full (default) reads the player and the watch-next data per Short; player reads only the player (one call per Short) and leaves description links, comment counts, publishDateText and chapters empty or null and the channel row without handle or thumbnail (description is then the player's raw text), with the coverage warning watch_next_omitted."
|
|
54592
|
+
}
|
|
54593
|
+
},
|
|
52378
54594
|
"required": [],
|
|
52379
54595
|
"additionalProperties": false
|
|
52380
54596
|
},
|
|
@@ -52682,7 +54898,8 @@
|
|
|
52682
54898
|
"playlist_truncated",
|
|
52683
54899
|
"transcript_unavailable",
|
|
52684
54900
|
"sequence_incomplete",
|
|
52685
|
-
"sort_unavailable"
|
|
54901
|
+
"sort_unavailable",
|
|
54902
|
+
"watch_next_omitted"
|
|
52686
54903
|
]
|
|
52687
54904
|
},
|
|
52688
54905
|
"maxItems": 8
|
|
@@ -52806,10 +55023,16 @@
|
|
|
52806
55023
|
"type": "string",
|
|
52807
55024
|
"enum": ["true", "false"],
|
|
52808
55025
|
"description": "Set to true to read per-video details for every listed video (two small public API calls per video, issued together: the player metadata and the watch-next data; up to 48 videos, 12 at a time) and add description, commentCountText, commentCountInt, likeCountInt, likeCountText, publishDate (ISO 8601 with the channel's offset), genre, durationMs and durationFormatted to each video, and replace viewCountText/viewCountInt with the exact count. Defaults to false. Videos whose details could not be read keep null extras and the response is partial with extras_incomplete."
|
|
55026
|
+
},
|
|
55027
|
+
"extrasDetail": {
|
|
55028
|
+
"type": "string",
|
|
55029
|
+
"enum": ["full", "player"],
|
|
55030
|
+
"description": "full (default) reads the player and the watch-next data per video; player reads only the player (one call per video, about half the upstream bytes) and leaves the watch-next fields commentCountText and commentCountInt null (description is then the player's raw text), with the coverage warning watch_next_omitted. Requires includeExtras=true."
|
|
52809
55031
|
}
|
|
52810
55032
|
},
|
|
52811
55033
|
"required": ["query"],
|
|
52812
|
-
"additionalProperties": false
|
|
55034
|
+
"additionalProperties": false,
|
|
55035
|
+
"x-runtime-refinement": true
|
|
52813
55036
|
},
|
|
52814
55037
|
"outputSchema": {
|
|
52815
55038
|
"anyOf": [
|
|
@@ -53245,7 +55468,8 @@
|
|
|
53245
55468
|
"playlist_truncated",
|
|
53246
55469
|
"transcript_unavailable",
|
|
53247
55470
|
"sequence_incomplete",
|
|
53248
|
-
"sort_unavailable"
|
|
55471
|
+
"sort_unavailable",
|
|
55472
|
+
"watch_next_omitted"
|
|
53249
55473
|
]
|
|
53250
55474
|
},
|
|
53251
55475
|
"maxItems": 8
|
|
@@ -53789,7 +56013,8 @@
|
|
|
53789
56013
|
"playlist_truncated",
|
|
53790
56014
|
"transcript_unavailable",
|
|
53791
56015
|
"sequence_incomplete",
|
|
53792
|
-
"sort_unavailable"
|
|
56016
|
+
"sort_unavailable",
|
|
56017
|
+
"watch_next_omitted"
|
|
53793
56018
|
]
|
|
53794
56019
|
},
|
|
53795
56020
|
"maxItems": 8
|