@scrapecreators/cli 1.0.10 → 1.0.11
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/api-config/instagram-apis.js +64 -729
- package/package.json +1 -1
|
@@ -491,70 +491,6 @@ export const instagramBaseApis = {
|
|
|
491
491
|
},
|
|
492
492
|
],
|
|
493
493
|
},
|
|
494
|
-
{
|
|
495
|
-
name: "Trending Reels",
|
|
496
|
-
method: "GET",
|
|
497
|
-
description:
|
|
498
|
-
"Get trending reels from Instagram. Call this endpoint again to get new-ish results. There can be duplicates because this uses Instagram's public instagram.com/reels page, and that is how the page behaves too.",
|
|
499
|
-
fullDescription:
|
|
500
|
-
"Fetches trending reels from Instagram's public instagram.com/reels page. Instagram only gives a small batch at a time and the results can overlap, so call this endpoint over and over when you want more. Each call should return new-ish results, but expect some duplicates because that is how Instagram's reels page behaves too. Returns `reels`, an array of reel objects with shortcode, URL, caption, media URLs, engagement counts when Instagram exposes them, and user info.",
|
|
501
|
-
path: "/v1/instagram/reels/trending",
|
|
502
|
-
params: [],
|
|
503
|
-
sampleResponse: {
|
|
504
|
-
success: true,
|
|
505
|
-
credits_remaining: 100,
|
|
506
|
-
data: {
|
|
507
|
-
reels: [
|
|
508
|
-
{
|
|
509
|
-
id: "3659267353687104516",
|
|
510
|
-
pk: "3659267353687104516",
|
|
511
|
-
shortcode: "DYt13O8gLoE",
|
|
512
|
-
url: "https://www.instagram.com/reel/DYt13O8gLoE/",
|
|
513
|
-
caption: "Funny clip from today",
|
|
514
|
-
taken_at: "2026-01-02T18:32:11.000Z",
|
|
515
|
-
media_type: 2,
|
|
516
|
-
product_type: "clips",
|
|
517
|
-
video_url: "https://scontent.cdninstagram.com/o1/v/t16/f2/m86/example.mp4",
|
|
518
|
-
video_versions: [
|
|
519
|
-
{
|
|
520
|
-
type: 101,
|
|
521
|
-
width: 720,
|
|
522
|
-
height: 1280,
|
|
523
|
-
url: "https://scontent.cdninstagram.com/o1/v/t16/f2/m86/example.mp4",
|
|
524
|
-
},
|
|
525
|
-
],
|
|
526
|
-
image_url: "https://scontent.cdninstagram.com/v/t51.2885-15/example.jpg",
|
|
527
|
-
image_versions2: {
|
|
528
|
-
candidates: [
|
|
529
|
-
{
|
|
530
|
-
width: 720,
|
|
531
|
-
height: 1280,
|
|
532
|
-
url: "https://scontent.cdninstagram.com/v/t51.2885-15/example.jpg",
|
|
533
|
-
},
|
|
534
|
-
],
|
|
535
|
-
},
|
|
536
|
-
original_width: 720,
|
|
537
|
-
original_height: 1280,
|
|
538
|
-
has_audio: true,
|
|
539
|
-
like_count: 12345,
|
|
540
|
-
comment_count: 123,
|
|
541
|
-
play_count: 456789,
|
|
542
|
-
ig_play_count: 456789,
|
|
543
|
-
clips_metadata: {},
|
|
544
|
-
user: {
|
|
545
|
-
id: "123456789",
|
|
546
|
-
pk: "123456789",
|
|
547
|
-
username: "creator",
|
|
548
|
-
full_name: "Creator",
|
|
549
|
-
profile_pic_url: "https://scontent.cdninstagram.com/v/t51.2885-19/example.jpg",
|
|
550
|
-
is_verified: true,
|
|
551
|
-
is_private: false,
|
|
552
|
-
},
|
|
553
|
-
},
|
|
554
|
-
],
|
|
555
|
-
},
|
|
556
|
-
},
|
|
557
|
-
},
|
|
558
494
|
{
|
|
559
495
|
name: "Basic Profile",
|
|
560
496
|
method: "GET",
|
|
@@ -4329,6 +4265,70 @@ export const instagramBaseApis = {
|
|
|
4329
4265
|
],
|
|
4330
4266
|
},
|
|
4331
4267
|
},
|
|
4268
|
+
{
|
|
4269
|
+
name: "Trending Reels",
|
|
4270
|
+
method: "GET",
|
|
4271
|
+
description:
|
|
4272
|
+
"Get trending reels from Instagram. Call this endpoint again to get new-ish results. There can be duplicates because this uses Instagram's public instagram.com/reels page, and that is how the page behaves too.",
|
|
4273
|
+
fullDescription:
|
|
4274
|
+
"Fetches trending reels from Instagram's public instagram.com/reels page. Instagram only gives a small batch at a time and the results can overlap, so call this endpoint over and over when you want more. Each call should return new-ish results, but expect some duplicates because that is how Instagram's reels page behaves too. Returns `reels`, an array of reel objects with shortcode, URL, caption, media URLs, engagement counts when Instagram exposes them, and user info.",
|
|
4275
|
+
path: "/v1/instagram/reels/trending",
|
|
4276
|
+
params: [],
|
|
4277
|
+
sampleResponse: {
|
|
4278
|
+
success: true,
|
|
4279
|
+
credits_remaining: 100,
|
|
4280
|
+
data: {
|
|
4281
|
+
reels: [
|
|
4282
|
+
{
|
|
4283
|
+
id: "3659267353687104516",
|
|
4284
|
+
pk: "3659267353687104516",
|
|
4285
|
+
shortcode: "DYt13O8gLoE",
|
|
4286
|
+
url: "https://www.instagram.com/reel/DYt13O8gLoE/",
|
|
4287
|
+
caption: "Funny clip from today",
|
|
4288
|
+
taken_at: "2026-01-02T18:32:11.000Z",
|
|
4289
|
+
media_type: 2,
|
|
4290
|
+
product_type: "clips",
|
|
4291
|
+
video_url: "https://scontent.cdninstagram.com/o1/v/t16/f2/m86/example.mp4",
|
|
4292
|
+
video_versions: [
|
|
4293
|
+
{
|
|
4294
|
+
type: 101,
|
|
4295
|
+
width: 720,
|
|
4296
|
+
height: 1280,
|
|
4297
|
+
url: "https://scontent.cdninstagram.com/o1/v/t16/f2/m86/example.mp4",
|
|
4298
|
+
},
|
|
4299
|
+
],
|
|
4300
|
+
image_url: "https://scontent.cdninstagram.com/v/t51.2885-15/example.jpg",
|
|
4301
|
+
image_versions2: {
|
|
4302
|
+
candidates: [
|
|
4303
|
+
{
|
|
4304
|
+
width: 720,
|
|
4305
|
+
height: 1280,
|
|
4306
|
+
url: "https://scontent.cdninstagram.com/v/t51.2885-15/example.jpg",
|
|
4307
|
+
},
|
|
4308
|
+
],
|
|
4309
|
+
},
|
|
4310
|
+
original_width: 720,
|
|
4311
|
+
original_height: 1280,
|
|
4312
|
+
has_audio: true,
|
|
4313
|
+
like_count: 12345,
|
|
4314
|
+
comment_count: 123,
|
|
4315
|
+
play_count: 456789,
|
|
4316
|
+
ig_play_count: 456789,
|
|
4317
|
+
clips_metadata: {},
|
|
4318
|
+
user: {
|
|
4319
|
+
id: "123456789",
|
|
4320
|
+
pk: "123456789",
|
|
4321
|
+
username: "creator",
|
|
4322
|
+
full_name: "Creator",
|
|
4323
|
+
profile_pic_url: "https://scontent.cdninstagram.com/v/t51.2885-19/example.jpg",
|
|
4324
|
+
is_verified: true,
|
|
4325
|
+
is_private: false,
|
|
4326
|
+
},
|
|
4327
|
+
},
|
|
4328
|
+
],
|
|
4329
|
+
},
|
|
4330
|
+
},
|
|
4331
|
+
},
|
|
4332
4332
|
// {
|
|
4333
4333
|
// name: "Comments (We handle pagination)",
|
|
4334
4334
|
// method: "GET",
|
|
@@ -5520,671 +5520,6 @@ export const instagramBaseApis = {
|
|
|
5520
5520
|
is_fit_green: true,
|
|
5521
5521
|
},
|
|
5522
5522
|
},
|
|
5523
|
-
{
|
|
5524
|
-
name: "Reels using Song (Deprecated)",
|
|
5525
|
-
method: "GET",
|
|
5526
|
-
description: "Instagram removed the public pages for this, so now we can't scrape it anymore :(",
|
|
5527
|
-
fullDescription:
|
|
5528
|
-
"DEPRECATED — this endpoint is no longer functional. Instagram removed the public audio pages that this endpoint relied on, so it cannot return data. Do not use this endpoint; there is currently no replacement available.",
|
|
5529
|
-
path: "/v1/instagram/song/reels",
|
|
5530
|
-
params: [
|
|
5531
|
-
{
|
|
5532
|
-
name: "audio_id",
|
|
5533
|
-
type: "string",
|
|
5534
|
-
required: true,
|
|
5535
|
-
description:
|
|
5536
|
-
"If you're looking for this, it is sometimes called 'audio_cluster_id', or it can be just 'audio_id'.",
|
|
5537
|
-
placeholder: "844716519067330",
|
|
5538
|
-
},
|
|
5539
|
-
{
|
|
5540
|
-
name: "max_id",
|
|
5541
|
-
type: "string",
|
|
5542
|
-
description:
|
|
5543
|
-
"How you paginate the results. Pass the max_id from the previous response to get the next set of reels.",
|
|
5544
|
-
placeholder: "GvYhgPbWtJ....",
|
|
5545
|
-
},
|
|
5546
|
-
],
|
|
5547
|
-
sampleResponse: {
|
|
5548
|
-
success: true,
|
|
5549
|
-
items: [
|
|
5550
|
-
{
|
|
5551
|
-
media: {
|
|
5552
|
-
pk: "3652360178415977960",
|
|
5553
|
-
id: "3652360178415977960_4396457",
|
|
5554
|
-
fbid: "18034424375376227",
|
|
5555
|
-
device_timestamp: 134142505793774,
|
|
5556
|
-
caption_is_edited: true,
|
|
5557
|
-
strong_id__: "3652360178415977960_4396457",
|
|
5558
|
-
deleted_reason: 0,
|
|
5559
|
-
has_shared_to_fb: 0,
|
|
5560
|
-
has_delayed_metadata: false,
|
|
5561
|
-
mezql_token: "0:OZQlIevIQU+5pG5dXNMsSw==",
|
|
5562
|
-
share_count_disabled: false,
|
|
5563
|
-
should_request_ads: false,
|
|
5564
|
-
is_reshare_of_text_post_app_media_in_ig: false,
|
|
5565
|
-
integrity_review_decision: "pending",
|
|
5566
|
-
client_cache_key: "MzY1MjM2MDE3ODQxNTk3Nzk2MA==.3",
|
|
5567
|
-
filter_type: 0,
|
|
5568
|
-
is_visual_reply_commenter_notice_enabled: true,
|
|
5569
|
-
comment_threading_enabled: true,
|
|
5570
|
-
like_and_view_counts_disabled: false,
|
|
5571
|
-
has_privately_liked: false,
|
|
5572
|
-
is_unified_video: false,
|
|
5573
|
-
is_post_live_clips_media: false,
|
|
5574
|
-
commerciality_status: "not_commercial",
|
|
5575
|
-
is_quiet_post: false,
|
|
5576
|
-
subtype_name_for_REST__: "XDTClipsMedia",
|
|
5577
|
-
taken_at: 1749615300,
|
|
5578
|
-
has_tagged_users: true,
|
|
5579
|
-
usertags: {
|
|
5580
|
-
in: [
|
|
5581
|
-
{
|
|
5582
|
-
position: [0, 0],
|
|
5583
|
-
user: {
|
|
5584
|
-
pk: "811350",
|
|
5585
|
-
pk_id: "811350",
|
|
5586
|
-
id: "811350",
|
|
5587
|
-
full_name: "John Paul Dizon",
|
|
5588
|
-
is_private: false,
|
|
5589
|
-
strong_id__: "811350",
|
|
5590
|
-
username: "john_paul_dizon",
|
|
5591
|
-
is_verified: true,
|
|
5592
|
-
profile_pic_id: "3174559232146314169_811350",
|
|
5593
|
-
profile_pic_url:
|
|
5594
|
-
"https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/368674833_604213368557202_5526712452728694884_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=106&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=jaUs5Rk4FbQQ7kNvwHTFk_4&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfP03wtYo0WVMIsIhWP-dzIQDbQMwoXhiylXEejlWeFKuA&oe=686C9D56&_nc_sid=594fa5",
|
|
5595
|
-
},
|
|
5596
|
-
},
|
|
5597
|
-
],
|
|
5598
|
-
},
|
|
5599
|
-
photo_of_you: false,
|
|
5600
|
-
can_see_insights_as_brand: false,
|
|
5601
|
-
media_type: 2,
|
|
5602
|
-
code: "DKvyjsyREXo",
|
|
5603
|
-
caption: {
|
|
5604
|
-
bit_flags: 0,
|
|
5605
|
-
created_at: 1749616067,
|
|
5606
|
-
created_at_utc: 1749616067,
|
|
5607
|
-
did_report_as_spam: false,
|
|
5608
|
-
is_ranked_comment: false,
|
|
5609
|
-
pk: "18034425596376227",
|
|
5610
|
-
share_enabled: false,
|
|
5611
|
-
content_type: "comment",
|
|
5612
|
-
media_id: "3652360178415977960",
|
|
5613
|
-
status: "Active",
|
|
5614
|
-
type: 1,
|
|
5615
|
-
user_id: "4396457",
|
|
5616
|
-
strong_id__: "18034425596376227",
|
|
5617
|
-
text: "Here for the soft wins and good energy 💃🏿😊\n\n🎥 @jkvzxc \n@pongniu \n@eusebiobryanl_ \n@john_paul_dizon \n@bumrecones\n@itsshowtimena",
|
|
5618
|
-
user: {
|
|
5619
|
-
pk: "4396457",
|
|
5620
|
-
pk_id: "4396457",
|
|
5621
|
-
id: "4396457",
|
|
5622
|
-
full_name: "Winwyn Marquez",
|
|
5623
|
-
is_private: false,
|
|
5624
|
-
is_unpublished: false,
|
|
5625
|
-
strong_id__: "4396457",
|
|
5626
|
-
fbid_v2: "17841401333710068",
|
|
5627
|
-
username: "teresitassen",
|
|
5628
|
-
is_verified: true,
|
|
5629
|
-
profile_pic_id: "3580881894760116061_4396457",
|
|
5630
|
-
profile_pic_url:
|
|
5631
|
-
"https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOyjybRG06cl2tTepSHumyLsNKwNs_xC8JzLjlDNWcKvA&oe=686CB398&_nc_sid=594fa5",
|
|
5632
|
-
},
|
|
5633
|
-
is_covered: false,
|
|
5634
|
-
private_reply_status: 0,
|
|
5635
|
-
},
|
|
5636
|
-
sharing_friction_info: {
|
|
5637
|
-
bloks_app_url: null,
|
|
5638
|
-
should_have_sharing_friction: false,
|
|
5639
|
-
sharing_friction_payload: null,
|
|
5640
|
-
},
|
|
5641
|
-
timeline_pinned_user_ids: [],
|
|
5642
|
-
play_count: 66233,
|
|
5643
|
-
has_views_fetching: true,
|
|
5644
|
-
ig_play_count: 66233,
|
|
5645
|
-
creator_viewer_insights: [],
|
|
5646
|
-
display_uri:
|
|
5647
|
-
"https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-15/506027249_18505647922044458_4316725904949757663_n.jpg?stp=c0.210.540.540a_dst-jpg_e15_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=102&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=ap3WVBkNwX8Q7kNvwHXMeqb&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOpCfJN_jGvfDUt1TNR0rE9HP36VlhfoMKOyzQjczQg2w&oe=686C93F3&_nc_sid=594fa5",
|
|
5648
|
-
fb_user_tags: {
|
|
5649
|
-
in: [],
|
|
5650
|
-
},
|
|
5651
|
-
coauthor_producers: [
|
|
5652
|
-
{
|
|
5653
|
-
pk: "196370659",
|
|
5654
|
-
pk_id: "196370659",
|
|
5655
|
-
id: "196370659",
|
|
5656
|
-
full_name: "Pong Niu",
|
|
5657
|
-
is_private: false,
|
|
5658
|
-
strong_id__: "196370659",
|
|
5659
|
-
username: "pongniu",
|
|
5660
|
-
is_verified: false,
|
|
5661
|
-
profile_pic_url:
|
|
5662
|
-
"https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/10576084_1447932498816448_1340404624_a.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=104&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=xATjiv7bWfsQ7kNvwFcvrIS&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOjvPgi4sewnbNy6GQd_AH9sZPtQt8LSbvVo9Z1kK4TwQ&oe=686CA826&_nc_sid=594fa5",
|
|
5663
|
-
},
|
|
5664
|
-
],
|
|
5665
|
-
coauthor_producer_can_see_organic_insights: false,
|
|
5666
|
-
invited_coauthor_producers: [],
|
|
5667
|
-
is_in_profile_grid: false,
|
|
5668
|
-
profile_grid_control_enabled: false,
|
|
5669
|
-
media_cropping_info: {
|
|
5670
|
-
square_crop: {
|
|
5671
|
-
crop_left: 0,
|
|
5672
|
-
crop_right: 1,
|
|
5673
|
-
crop_top: 0.023958333,
|
|
5674
|
-
crop_bottom: 0.5864583,
|
|
5675
|
-
},
|
|
5676
|
-
},
|
|
5677
|
-
user: {
|
|
5678
|
-
fbid_v2: "17841401333710068",
|
|
5679
|
-
feed_post_reshare_disabled: true,
|
|
5680
|
-
full_name: "Winwyn Marquez",
|
|
5681
|
-
id: "4396457",
|
|
5682
|
-
is_private: false,
|
|
5683
|
-
is_unpublished: false,
|
|
5684
|
-
pk: "4396457",
|
|
5685
|
-
pk_id: "4396457",
|
|
5686
|
-
show_account_transparency_details: true,
|
|
5687
|
-
strong_id__: "4396457",
|
|
5688
|
-
third_party_downloads_enabled: 2,
|
|
5689
|
-
account_type: 3,
|
|
5690
|
-
account_badges: [],
|
|
5691
|
-
fan_club_info: {
|
|
5692
|
-
autosave_to_exclusive_highlight: null,
|
|
5693
|
-
connected_member_count: null,
|
|
5694
|
-
fan_club_id: null,
|
|
5695
|
-
fan_club_name: null,
|
|
5696
|
-
has_created_ssc: null,
|
|
5697
|
-
has_enough_subscribers_for_ssc: null,
|
|
5698
|
-
is_fan_club_gifting_eligible: null,
|
|
5699
|
-
is_fan_club_referral_eligible: null,
|
|
5700
|
-
is_free_trial_eligible: null,
|
|
5701
|
-
largest_public_bc_id: null,
|
|
5702
|
-
subscriber_count: null,
|
|
5703
|
-
fan_consideration_page_revamp_eligiblity: null,
|
|
5704
|
-
},
|
|
5705
|
-
has_anonymous_profile_picture: false,
|
|
5706
|
-
hd_profile_pic_url_info: {
|
|
5707
|
-
height: 1080,
|
|
5708
|
-
url: "https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOx78ar_6q1VUnSPiuM632lWFwsOPiRMxQPom23mZLWIw&oe=686CB398&_nc_sid=594fa5",
|
|
5709
|
-
width: 1080,
|
|
5710
|
-
},
|
|
5711
|
-
hd_profile_pic_versions: [
|
|
5712
|
-
{
|
|
5713
|
-
height: 320,
|
|
5714
|
-
url: "https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s320x320_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfNqWrF8IYOBzrpUMQwgzu9Mid02jqOqUsO0jakyqrLeMA&oe=686CB398&_nc_sid=594fa5",
|
|
5715
|
-
width: 320,
|
|
5716
|
-
},
|
|
5717
|
-
{
|
|
5718
|
-
height: 640,
|
|
5719
|
-
url: "https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s640x640_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfPLtwPm__z9bj-eRfkWps5nzAdGhLGMTrkLoo9Xw8Qc7Q&oe=686CB398&_nc_sid=594fa5",
|
|
5720
|
-
width: 640,
|
|
5721
|
-
},
|
|
5722
|
-
],
|
|
5723
|
-
is_verified: true,
|
|
5724
|
-
profile_pic_id: "3580881894760116061_4396457",
|
|
5725
|
-
profile_pic_url:
|
|
5726
|
-
"https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOyjybRG06cl2tTepSHumyLsNKwNs_xC8JzLjlDNWcKvA&oe=686CB398&_nc_sid=594fa5",
|
|
5727
|
-
transparency_product_enabled: false,
|
|
5728
|
-
username: "teresitassen",
|
|
5729
|
-
is_embeds_disabled: false,
|
|
5730
|
-
eligible_for_text_app_activation_badge: false,
|
|
5731
|
-
},
|
|
5732
|
-
owner: {
|
|
5733
|
-
fbid_v2: "17841401333710068",
|
|
5734
|
-
feed_post_reshare_disabled: true,
|
|
5735
|
-
full_name: "Winwyn Marquez",
|
|
5736
|
-
id: "4396457",
|
|
5737
|
-
is_private: false,
|
|
5738
|
-
is_unpublished: false,
|
|
5739
|
-
pk: "4396457",
|
|
5740
|
-
pk_id: "4396457",
|
|
5741
|
-
show_account_transparency_details: true,
|
|
5742
|
-
strong_id__: "4396457",
|
|
5743
|
-
third_party_downloads_enabled: 2,
|
|
5744
|
-
account_type: 3,
|
|
5745
|
-
account_badges: [],
|
|
5746
|
-
fan_club_info: {
|
|
5747
|
-
autosave_to_exclusive_highlight: null,
|
|
5748
|
-
connected_member_count: null,
|
|
5749
|
-
fan_club_id: null,
|
|
5750
|
-
fan_club_name: null,
|
|
5751
|
-
has_created_ssc: null,
|
|
5752
|
-
has_enough_subscribers_for_ssc: null,
|
|
5753
|
-
is_fan_club_gifting_eligible: null,
|
|
5754
|
-
is_fan_club_referral_eligible: null,
|
|
5755
|
-
is_free_trial_eligible: null,
|
|
5756
|
-
largest_public_bc_id: null,
|
|
5757
|
-
subscriber_count: null,
|
|
5758
|
-
fan_consideration_page_revamp_eligiblity: null,
|
|
5759
|
-
},
|
|
5760
|
-
has_anonymous_profile_picture: false,
|
|
5761
|
-
hd_profile_pic_url_info: {
|
|
5762
|
-
height: 1080,
|
|
5763
|
-
url: "https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOx78ar_6q1VUnSPiuM632lWFwsOPiRMxQPom23mZLWIw&oe=686CB398&_nc_sid=594fa5",
|
|
5764
|
-
width: 1080,
|
|
5765
|
-
},
|
|
5766
|
-
hd_profile_pic_versions: [
|
|
5767
|
-
{
|
|
5768
|
-
height: 320,
|
|
5769
|
-
url: "https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s320x320_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfNqWrF8IYOBzrpUMQwgzu9Mid02jqOqUsO0jakyqrLeMA&oe=686CB398&_nc_sid=594fa5",
|
|
5770
|
-
width: 320,
|
|
5771
|
-
},
|
|
5772
|
-
{
|
|
5773
|
-
height: 640,
|
|
5774
|
-
url: "https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s640x640_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfPLtwPm__z9bj-eRfkWps5nzAdGhLGMTrkLoo9Xw8Qc7Q&oe=686CB398&_nc_sid=594fa5",
|
|
5775
|
-
width: 640,
|
|
5776
|
-
},
|
|
5777
|
-
],
|
|
5778
|
-
is_verified: true,
|
|
5779
|
-
profile_pic_id: "3580881894760116061_4396457",
|
|
5780
|
-
profile_pic_url:
|
|
5781
|
-
"https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOyjybRG06cl2tTepSHumyLsNKwNs_xC8JzLjlDNWcKvA&oe=686CB398&_nc_sid=594fa5",
|
|
5782
|
-
transparency_product_enabled: false,
|
|
5783
|
-
username: "teresitassen",
|
|
5784
|
-
is_embeds_disabled: false,
|
|
5785
|
-
eligible_for_text_app_activation_badge: false,
|
|
5786
|
-
},
|
|
5787
|
-
image_versions2: {
|
|
5788
|
-
additional_candidates: {
|
|
5789
|
-
first_frame: {
|
|
5790
|
-
estimated_scans_sizes: [],
|
|
5791
|
-
height: 1136,
|
|
5792
|
-
scans_profile: null,
|
|
5793
|
-
url: "https://scontent.cdninstagram.com/v/t51.71878-15/503032859_4019193691701439_3814288192587076541_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=109&ccb=1-7&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjY0MHgxMTM2LnNkciJ9&_nc_ohc=bD4KByC46XYQ7kNvwFu5j6w&_nc_oc=AdlbpRHz4r3G8O0tx-ADaogWnn5lPc4wpd6PWqFW4VrW2dvDmg-W1SGfdw4SQ6OOV9A&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&oh=00_AfP_5oWGZbv2jq25WRcZqVum8jp_e1UNZ5Iy-lp8WxEPpA&oe=686C9F27",
|
|
5794
|
-
width: 640,
|
|
5795
|
-
},
|
|
5796
|
-
igtv_first_frame: {
|
|
5797
|
-
estimated_scans_sizes: [],
|
|
5798
|
-
height: 1136,
|
|
5799
|
-
scans_profile: null,
|
|
5800
|
-
url: "https://scontent.cdninstagram.com/v/t51.71878-15/503032859_4019193691701439_3814288192587076541_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=109&ccb=1-7&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjY0MHgxMTM2LnNkciJ9&_nc_ohc=bD4KByC46XYQ7kNvwFu5j6w&_nc_oc=AdlbpRHz4r3G8O0tx-ADaogWnn5lPc4wpd6PWqFW4VrW2dvDmg-W1SGfdw4SQ6OOV9A&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&oh=00_AfP_5oWGZbv2jq25WRcZqVum8jp_e1UNZ5Iy-lp8WxEPpA&oe=686C9F27",
|
|
5801
|
-
width: 640,
|
|
5802
|
-
},
|
|
5803
|
-
smart_frame: null,
|
|
5804
|
-
},
|
|
5805
|
-
animated_thumbnail_spritesheet_info_candidates: {
|
|
5806
|
-
default: {
|
|
5807
|
-
file_size_kb: 397,
|
|
5808
|
-
max_thumbnails_per_sprite: 18,
|
|
5809
|
-
rendered_width: 96,
|
|
5810
|
-
sprite_height: 1920,
|
|
5811
|
-
sprite_urls: [
|
|
5812
|
-
"https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-15/503812021_1050206773391122_1848922271260643876_n.jpg?_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=110&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=eHvtTT81ycYQ7kNvwGiud4C&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfN83w9k3ZSHF6_M2kVMy0YEfjDidT_Aqf65FvxKrR4-Ag&oe=686CA4A6&_nc_sid=594fa5",
|
|
5813
|
-
],
|
|
5814
|
-
sprite_width: 2160,
|
|
5815
|
-
thumbnail_duration: 0.06666666666666667,
|
|
5816
|
-
thumbnail_height: 640,
|
|
5817
|
-
thumbnail_width: 360,
|
|
5818
|
-
thumbnails_per_row: 6,
|
|
5819
|
-
total_thumbnail_num_per_sprite: 18,
|
|
5820
|
-
video_length: 26.574,
|
|
5821
|
-
},
|
|
5822
|
-
},
|
|
5823
|
-
candidates: [
|
|
5824
|
-
{
|
|
5825
|
-
estimated_scans_sizes: [],
|
|
5826
|
-
height: 960,
|
|
5827
|
-
scans_profile: null,
|
|
5828
|
-
url: "https://scontent.cdninstagram.com/v/t51.75761-15/506027249_18505647922044458_4316725904949757663_n.jpg?stp=dst-jpg_e15_tt6&_nc_cat=111&ig_cache_key=MzY1MjM2MDE3ODQxNTk3Nzk2MA%3D%3D.3-ccb1-7&ccb=1-7&_nc_sid=58cdad&efg=eyJ2ZW5jb2RlX3RhZyI6InhwaWRzLjU0MHg5NjAuc2RyIn0%3D&_nc_ohc=QnCwhY33N3UQ7kNvwGa9OC5&_nc_oc=Adlzzdwf5esxB17JY8vRM9ozFfqRO_WsqstrElxdqQPGMNF3YTNOZeElC85znMLL4aU&_nc_ad=z-m&_nc_cid=0&_nc_zt=23&_nc_ht=scontent.cdninstagram.com&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&oh=00_AfOppAjm4-YHcOa5JAHfaq3nOOdbFaVIL-Qx_1dn-wEQkg&oe=686CAD4C",
|
|
5829
|
-
width: 540,
|
|
5830
|
-
},
|
|
5831
|
-
],
|
|
5832
|
-
scrubber_spritesheet_info_candidates: {
|
|
5833
|
-
default: {
|
|
5834
|
-
file_size_kb: 294,
|
|
5835
|
-
max_thumbnails_per_sprite: 105,
|
|
5836
|
-
rendered_width: 96,
|
|
5837
|
-
sprite_height: 1246,
|
|
5838
|
-
sprite_urls: [
|
|
5839
|
-
"https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-15/504275986_739918552051472_2110443255552546043_n.jpg?_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=108&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=XezVX6ZLqDEQ7kNvwHjBVoG&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfO6bQTOZyaOyHqwhIr_TVv43UKBn7QhaV5fC9D--X9lmA&oe=686C9F52&_nc_sid=594fa5",
|
|
5840
|
-
],
|
|
5841
|
-
sprite_width: 1500,
|
|
5842
|
-
thumbnail_duration: 0.2530857142857143,
|
|
5843
|
-
thumbnail_height: 178,
|
|
5844
|
-
thumbnail_width: 100,
|
|
5845
|
-
thumbnails_per_row: 15,
|
|
5846
|
-
total_thumbnail_num_per_sprite: 105,
|
|
5847
|
-
video_length: 26.574,
|
|
5848
|
-
},
|
|
5849
|
-
},
|
|
5850
|
-
},
|
|
5851
|
-
original_width: 1080,
|
|
5852
|
-
original_height: 1920,
|
|
5853
|
-
is_artist_pick: false,
|
|
5854
|
-
media_reposter_bottomsheet_enabled: false,
|
|
5855
|
-
enable_media_notes_production: false,
|
|
5856
|
-
product_type: "clips",
|
|
5857
|
-
is_paid_partnership: false,
|
|
5858
|
-
inventory_source: "recommended_clips_chaining_model",
|
|
5859
|
-
music_metadata: null,
|
|
5860
|
-
organic_tracking_token:
|
|
5861
|
-
"eyJ2ZXJzaW9uIjo1LCJwYXlsb2FkIjp7ImlzX2FuYWx5dGljc190cmFja2VkIjp0cnVlLCJ1dWlkIjoiODM3ZjkyZGZjYjJjNDJiODg1NzZmOWEyOGFmNGU4NWIzNjUyMzYwMTc4NDE1OTc3OTYwIn0sInNpZ25hdHVyZSI6IiJ9",
|
|
5862
|
-
is_third_party_downloads_eligible: false,
|
|
5863
|
-
ig_media_sharing_disabled: false,
|
|
5864
|
-
are_remixes_crosspostable: true,
|
|
5865
|
-
boost_unavailable_identifier: null,
|
|
5866
|
-
boost_unavailable_reason: null,
|
|
5867
|
-
boost_unavailable_reason_v2: [],
|
|
5868
|
-
subscribe_cta_visible: false,
|
|
5869
|
-
creative_config: {
|
|
5870
|
-
capture_type: "clips_v2",
|
|
5871
|
-
face_effect_id: null,
|
|
5872
|
-
attribution_user: null,
|
|
5873
|
-
creation_tool_info: [
|
|
5874
|
-
{
|
|
5875
|
-
camera_tool: 179,
|
|
5876
|
-
duration_selector_seconds: 0,
|
|
5877
|
-
speed_selector: 0,
|
|
5878
|
-
color_filters: "",
|
|
5879
|
-
appearance_effect: 0,
|
|
5880
|
-
timer_selector_seconds: 0,
|
|
5881
|
-
magic_cut_start_time: 0,
|
|
5882
|
-
magic_cut_end_time: 0,
|
|
5883
|
-
},
|
|
5884
|
-
{
|
|
5885
|
-
camera_tool: 97,
|
|
5886
|
-
duration_selector_seconds: 0,
|
|
5887
|
-
speed_selector: 0,
|
|
5888
|
-
color_filters: "",
|
|
5889
|
-
appearance_effect: 0,
|
|
5890
|
-
timer_selector_seconds: 0,
|
|
5891
|
-
magic_cut_start_time: 0,
|
|
5892
|
-
magic_cut_end_time: 0,
|
|
5893
|
-
},
|
|
5894
|
-
],
|
|
5895
|
-
effect_configs: null,
|
|
5896
|
-
effect_preview: null,
|
|
5897
|
-
gen_ai_tool_info: null,
|
|
5898
|
-
},
|
|
5899
|
-
is_cutout_sticker_allowed: false,
|
|
5900
|
-
cutout_sticker_info: [],
|
|
5901
|
-
recommendation_data:
|
|
5902
|
-
'{"recommender_type_token": "AYa4SjjQKvHQjr6nprej3MjF899H5WWMaENCRAghF0SS2NejyVVOtTLHePplEIiQxxNI_7ZHdDzEWw9e"}',
|
|
5903
|
-
gen_ai_detection_method: {
|
|
5904
|
-
detection_method: "NONE",
|
|
5905
|
-
},
|
|
5906
|
-
fb_aggregated_like_count: 0,
|
|
5907
|
-
fb_aggregated_comment_count: 0,
|
|
5908
|
-
has_high_risk_gen_ai_inform_treatment: false,
|
|
5909
|
-
open_carousel_show_follow_button: false,
|
|
5910
|
-
is_tagged_media_shared_to_viewer_profile_grid: false,
|
|
5911
|
-
should_show_author_pog_for_tagged_media_shared_to_profile_grid: false,
|
|
5912
|
-
is_social_ufi_disabled: false,
|
|
5913
|
-
is_eligible_for_meta_ai_share: true,
|
|
5914
|
-
meta_ai_suggested_prompts: [],
|
|
5915
|
-
can_reply: false,
|
|
5916
|
-
floating_context_items: [],
|
|
5917
|
-
is_eligible_content_for_post_roll_ad: false,
|
|
5918
|
-
meta_ai_contextual_voice_data: {
|
|
5919
|
-
is_eligible: false,
|
|
5920
|
-
eligibility_result_reason: "INELIGIBLE_GK",
|
|
5921
|
-
},
|
|
5922
|
-
related_ads_pivots_media_info: "NOT_FEED_TIMELINE_REQUEST",
|
|
5923
|
-
is_open_to_public_submission: false,
|
|
5924
|
-
hidden_likes_string_variant: -1,
|
|
5925
|
-
can_view_more_preview_comments: false,
|
|
5926
|
-
commenting_disabled_for_viewer: true,
|
|
5927
|
-
preview_comments: [],
|
|
5928
|
-
comment_count: 59,
|
|
5929
|
-
hide_view_all_comment_entrypoint: false,
|
|
5930
|
-
is_comments_gif_composer_enabled: false,
|
|
5931
|
-
comment_inform_treatment: {
|
|
5932
|
-
action_type: null,
|
|
5933
|
-
should_have_inform_treatment: false,
|
|
5934
|
-
text: "",
|
|
5935
|
-
url: null,
|
|
5936
|
-
},
|
|
5937
|
-
has_more_comments: true,
|
|
5938
|
-
max_num_visible_preview_comments: 2,
|
|
5939
|
-
explore_hide_comments: false,
|
|
5940
|
-
has_liked: false,
|
|
5941
|
-
like_count: 4570,
|
|
5942
|
-
video_sticker_locales: [],
|
|
5943
|
-
is_dash_eligible: 1,
|
|
5944
|
-
number_of_qualities: 7,
|
|
5945
|
-
video_versions: [
|
|
5946
|
-
{
|
|
5947
|
-
bandwidth: null,
|
|
5948
|
-
height: 853,
|
|
5949
|
-
type: 101,
|
|
5950
|
-
url: "https://instagram.fphl1-1.fna.fbcdn.net/o1/v/t2/f2/m86/AQPCfwFHUv_nkm8iil7vMnobXrv00Yq3uLkI35vCgeX5JJsOsGksgoxytbRyWiEyb-7PbwtQggvSm8ziTaRYPzYwOPBO5kj66lvcKrM.mp4?_nc_cat=107&_nc_oc=Adl-0EWN7c0dXUe_2SF6CfU1v63z53j4m7liFlgmy7iCNwbMG9UxCXY2Wr_u4EDTalI&_nc_sid=5e9851&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_ohc=O0IlFbsT6tMQ7kNvwHkmeu4&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5JTlNUQUdSQU0uQ0xJUFMuQzMuNzIwLmRhc2hfYmFzZWxpbmVfMV92MSIsInhwdl9hc3NldF9pZCI6MTkzMTA1NTExNzcxOTcxNSwidmlfdXNlY2FzZV9pZCI6MTAwOTksImR1cmF0aW9uX3MiOjI2LCJ1cmxnZW5fc291cmNlIjoid3d3In0%3D&ccb=17-1&vs=5662edb71a201997&_nc_vs=HBksFQIYUmlnX3hwdl9yZWVsc19wZXJtYW5lbnRfc3JfcHJvZC8xODQxNUJBMjYzNTFEQUFFREQwQzdEQ0RBOEZGNUE5Ql92aWRlb19kYXNoaW5pdC5tcDQVAALIARIAFQIYOnBhc3N0aHJvdWdoX2V2ZXJzdG9yZS9HQ2h4S2g2anFpQ09uM29DQUZpdnFwNlVwVjBlYnFfRUFBQUYVAgLIARIAKAAYABsCiAd1c2Vfb2lsATEScHJvZ3Jlc3NpdmVfcmVjaXBlATEVAAAmxuKq5ZmS7gYVAigCQzMsF0A6hysCDEm6GBJkYXNoX2Jhc2VsaW5lXzFfdjERAHX-B2XmnQEA&_nc_zt=28&oh=00_AfNbwLuJ8F0Np7nwP-pUl5l1Uw-xetveBxE7u70XbdxkVQ&oe=6868B6A4",
|
|
5951
|
-
width: 480,
|
|
5952
|
-
},
|
|
5953
|
-
],
|
|
5954
|
-
video_duration: 26.574,
|
|
5955
|
-
has_audio: true,
|
|
5956
|
-
clips_tab_pinned_user_ids: [],
|
|
5957
|
-
clips_metadata: {
|
|
5958
|
-
clips_creation_entry_point: "clips",
|
|
5959
|
-
featured_label: null,
|
|
5960
|
-
is_public_chat_welcome_video: false,
|
|
5961
|
-
professional_clips_upsell_type: 0,
|
|
5962
|
-
show_tips: null,
|
|
5963
|
-
achievements_info: {
|
|
5964
|
-
num_earned_achievements: null,
|
|
5965
|
-
show_achievements: false,
|
|
5966
|
-
},
|
|
5967
|
-
additional_audio_info: {
|
|
5968
|
-
additional_audio_username: null,
|
|
5969
|
-
audio_reattribution_info: {
|
|
5970
|
-
should_allow_restore: false,
|
|
5971
|
-
},
|
|
5972
|
-
},
|
|
5973
|
-
asset_recommendation_info: null,
|
|
5974
|
-
audio_ranking_info: {
|
|
5975
|
-
best_audio_cluster_id: "1663799207810767",
|
|
5976
|
-
},
|
|
5977
|
-
audio_type: "original_sounds",
|
|
5978
|
-
branded_content_tag_info: {
|
|
5979
|
-
can_add_tag: false,
|
|
5980
|
-
},
|
|
5981
|
-
breaking_content_info: null,
|
|
5982
|
-
breaking_creator_info: null,
|
|
5983
|
-
challenge_info: null,
|
|
5984
|
-
content_appreciation_info: {
|
|
5985
|
-
enabled: false,
|
|
5986
|
-
entry_point_container: null,
|
|
5987
|
-
},
|
|
5988
|
-
contextual_highlight_info: null,
|
|
5989
|
-
cutout_sticker_info: [],
|
|
5990
|
-
disable_use_in_clips_client_cache: false,
|
|
5991
|
-
external_media_info: null,
|
|
5992
|
-
is_fan_club_promo_video: null,
|
|
5993
|
-
is_shared_to_fb: false,
|
|
5994
|
-
mashup_info: {
|
|
5995
|
-
can_toggle_mashups_allowed: false,
|
|
5996
|
-
formatted_mashups_count: null,
|
|
5997
|
-
has_been_mashed_up: false,
|
|
5998
|
-
has_nonmimicable_additional_audio: false,
|
|
5999
|
-
is_creator_requesting_mashup: false,
|
|
6000
|
-
is_light_weight_check: true,
|
|
6001
|
-
is_light_weight_reuse_allowed_check: false,
|
|
6002
|
-
is_pivot_page_available: false,
|
|
6003
|
-
is_reuse_allowed: false,
|
|
6004
|
-
mashup_type: null,
|
|
6005
|
-
mashups_allowed: false,
|
|
6006
|
-
non_privacy_filtered_mashups_media_count: 0,
|
|
6007
|
-
privacy_filtered_mashups_media_count: null,
|
|
6008
|
-
original_media: null,
|
|
6009
|
-
},
|
|
6010
|
-
merchandising_pill_info: null,
|
|
6011
|
-
music_canonical_id: "18345272542086608",
|
|
6012
|
-
music_info: null,
|
|
6013
|
-
nux_info: null,
|
|
6014
|
-
original_sound_info: {
|
|
6015
|
-
allow_creator_to_rename: true,
|
|
6016
|
-
audio_asset_id: "1912666542883002",
|
|
6017
|
-
attributed_custom_audio_asset_id: null,
|
|
6018
|
-
can_remix_be_shared_to_fb: false,
|
|
6019
|
-
can_remix_be_shared_to_fb_expansion: false,
|
|
6020
|
-
dash_manifest:
|
|
6021
|
-
'<?xml version="1.0" encoding="UTF-8"?>\n<MPD xmlns="urn:mpeg:dash:schema:mpd:2011" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:mpeg:dash:schema:mpd:2011 DASH-MPD.xsd" profiles="urn:mpeg:dash:profile:isoff-on-demand:2011" minBufferTime="PT2S" type="static" mediaPresentationDuration="PT26.563627S"><Period id="0" duration="PT26.563627S"><AdaptationSet id="0" contentType="audio" subsegmentStartsWithSAP="1" subsegmentAlignment="true"><Representation id="1103424701619288a" bandwidth="66791" codecs="mp4a.40.5" mimeType="audio/mp4" FBAvgBitrate="66791" audioSamplingRate="44100" FBDefaultQuality="1"><AudioChannelConfiguration schemeIdUri="urn:mpeg:dash:23003:3:audio_channel_configuration:2011" value="2"/><BaseURL>https://instagram.fphl1-1.fna.fbcdn.net/o1/v/t16/f2/m69/AQOtGpde7mZKiCTEXl6eb2Wl7uXPBsRjlvd--FL7pX7u2V6vwnoMWU6RJzdeVPsLs6Q7dA0khcdlahrNfC9ef7No.mp4?strext=1&_nc_cat=111&_nc_oc=AdmcK5mo88B_k1yDSK3vkIMzqgpX0XFf1X-VcA2FS8yhHFgNUxZaH85E8hzOwHjYdGo&_nc_sid=9ca052&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_ohc=J17O0JJw5GcQ7kNvwFFZzY4&efg=eyJ2ZW5jb2RlX3RhZyI6ImRhc2hfbG5faGVhYWNfdmJyM19hdWRpbyIsInZpZGVvX2lkIjpudWxsLCJvaWxfdXJsZ2VuX2FwcF9pZCI6MjU2MjgxMDQwNTU4LCJjbGllbnRfbmFtZSI6InVua25vd24iLCJ4cHZfYXNzZXRfaWQiOjE5MzEwNTUxMTc3MTk3MTUsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjoyNiwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&_nc_zt=28&oh=00_AfPHfW6yvnafxzVyeW9d6b2Tm9aI1n0jdR9Tji8zw6WWOw&oe=686CA95D</BaseURL><SegmentBase indexRange="824-1023" timescale="44100"><Initialization range="0-823"/></SegmentBase></Representation></AdaptationSet></Period></MPD>\n',
|
|
6022
|
-
duration_in_ms: 26574,
|
|
6023
|
-
formatted_clips_media_count: null,
|
|
6024
|
-
hide_remixing: true,
|
|
6025
|
-
is_audio_automatically_attributed: false,
|
|
6026
|
-
is_eligible_for_audio_effects: true,
|
|
6027
|
-
is_eligible_for_vinyl_sticker: true,
|
|
6028
|
-
is_explicit: false,
|
|
6029
|
-
is_original_audio_download_eligible: false,
|
|
6030
|
-
is_reuse_disabled: false,
|
|
6031
|
-
is_xpost_from_fb: false,
|
|
6032
|
-
music_canonical_id: null,
|
|
6033
|
-
oa_owner_is_music_artist: false,
|
|
6034
|
-
original_audio_subtype: "default",
|
|
6035
|
-
original_audio_title: "Original audio",
|
|
6036
|
-
original_media_id: "3652360178415977960",
|
|
6037
|
-
progressive_download_url:
|
|
6038
|
-
"https://video.fphl1-1.fna.fbcdn.net/o1/v/t2/f2/m69/AQOvj_JNlbum0C-rV_2sKIhFG9yR_EHAm8vQ6rHvrTYRv5Hr7V59pOtew3UIhEBMrQHRlnGofvT5XSR-2eVPLpvE.mp4?strext=1&_nc_cat=104&_nc_oc=Adk8G57tAh1zcsdJJ8nbFsZGlXHnhpqBan05v2r9V10zTgpLuFxhKTDJxBoaSf-z1xo&_nc_sid=8bf8fe&_nc_ht=video.fphl1-1.fna.fbcdn.net&_nc_ohc=9PZmSgc-dnUQ7kNvwGSYDiE&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5BVURJT19PTkxZLi5DMy4wLnByb2dyZXNzaXZlX2F1ZGlvIiwieHB2X2Fzc2V0X2lkIjoxOTMxMDU1MTE3NzE5NzE1LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MjYsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_zt=28&oh=00_AfNeMHqtJVi-Un5LcDK8dArHzR8ZdHJHWfg_p0Vk7odokA&oe=686C8E1A",
|
|
6039
|
-
should_mute_audio: false,
|
|
6040
|
-
time_created: 1749615302,
|
|
6041
|
-
trend_rank: null,
|
|
6042
|
-
previous_trend_rank: null,
|
|
6043
|
-
overlap_duration_in_ms: null,
|
|
6044
|
-
audio_asset_start_time_in_ms: null,
|
|
6045
|
-
ig_artist: {
|
|
6046
|
-
pk: "4396457",
|
|
6047
|
-
pk_id: "4396457",
|
|
6048
|
-
id: "4396457",
|
|
6049
|
-
username: "teresitassen",
|
|
6050
|
-
full_name: "Winwyn Marquez",
|
|
6051
|
-
is_private: false,
|
|
6052
|
-
is_verified: true,
|
|
6053
|
-
profile_pic_id: "3580881894760116061_4396457",
|
|
6054
|
-
profile_pic_url:
|
|
6055
|
-
"https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/482748787_655288426907779_404692267058769002_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=1&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=qOFHYUeSWnYQ7kNvwHkMv7w&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfOyjybRG06cl2tTepSHumyLsNKwNs_xC8JzLjlDNWcKvA&oe=686CB398&_nc_sid=594fa5",
|
|
6056
|
-
strong_id__: "4396457",
|
|
6057
|
-
},
|
|
6058
|
-
audio_filter_infos: [],
|
|
6059
|
-
audio_parts: [],
|
|
6060
|
-
audio_parts_by_filter: [],
|
|
6061
|
-
consumption_info: {
|
|
6062
|
-
display_media_id: null,
|
|
6063
|
-
is_bookmarked: false,
|
|
6064
|
-
is_trending_in_clips: false,
|
|
6065
|
-
should_mute_audio_reason: "",
|
|
6066
|
-
should_mute_audio_reason_type: null,
|
|
6067
|
-
user_notes: null,
|
|
6068
|
-
},
|
|
6069
|
-
xpost_fb_creator_info: null,
|
|
6070
|
-
fb_downstream_use_xpost_metadata: {
|
|
6071
|
-
downstream_use_xpost_deny_reason: "NONE",
|
|
6072
|
-
},
|
|
6073
|
-
},
|
|
6074
|
-
originality_info: null,
|
|
6075
|
-
reels_on_the_rise_info: null,
|
|
6076
|
-
reusable_text_attribute_string: null,
|
|
6077
|
-
reusable_text_info: null,
|
|
6078
|
-
shopping_info: null,
|
|
6079
|
-
show_achievements: false,
|
|
6080
|
-
template_info: null,
|
|
6081
|
-
may_have_template_info: null,
|
|
6082
|
-
viewer_interaction_settings: null,
|
|
6083
|
-
},
|
|
6084
|
-
can_viewer_save: true,
|
|
6085
|
-
can_viewer_reshare: false,
|
|
6086
|
-
shop_routing_user_id: null,
|
|
6087
|
-
is_organic_product_tagging_eligible: false,
|
|
6088
|
-
igbio_product: null,
|
|
6089
|
-
product_suggestions: [],
|
|
6090
|
-
view_state_item_type: 128,
|
|
6091
|
-
logging_info_token:
|
|
6092
|
-
"GCBmMWFhODk5ZGI1Yjk0YWRiOGY3YTNiM2UzMWQyYmY5ZBUAaAN2bGwA",
|
|
6093
|
-
clips_delivery_parameters: {
|
|
6094
|
-
fallback_warning_message: "",
|
|
6095
|
-
fsr_quality: 402,
|
|
6096
|
-
show_fallback_warning: false,
|
|
6097
|
-
use_for_flash_cache_only: false,
|
|
6098
|
-
},
|
|
6099
|
-
is_reuse_allowed: false,
|
|
6100
|
-
},
|
|
6101
|
-
},
|
|
6102
|
-
],
|
|
6103
|
-
paging_info: {
|
|
6104
|
-
max_id:
|
|
6105
|
-
"Gpa-z7y0tM7mzmXMutubrcuPvmXQl6Kk5o7lr2Wa_b_LpY_jq2XkhKqL47ufqmWqx5q7z9D4pGWq-5jqg-PJuGXu-4zrmYP4wGX2o-icwfPf32Umoqa-mvplFBI0AikIGAAaCDoGGQwA",
|
|
6106
|
-
more_available: true,
|
|
6107
|
-
},
|
|
6108
|
-
music_canonical_id: "18151049539042235",
|
|
6109
|
-
audio_page_reporting_id: "18151049539042235",
|
|
6110
|
-
formatted_media_count: "73.2K reels",
|
|
6111
|
-
metadata: {
|
|
6112
|
-
music_info: null,
|
|
6113
|
-
original_sound_info: {
|
|
6114
|
-
allow_creator_to_rename: true,
|
|
6115
|
-
audio_asset_id: "571995655694687",
|
|
6116
|
-
attributed_custom_audio_asset_id: null,
|
|
6117
|
-
can_remix_be_shared_to_fb: false,
|
|
6118
|
-
can_remix_be_shared_to_fb_expansion: false,
|
|
6119
|
-
duration_in_ms: 11920,
|
|
6120
|
-
formatted_clips_media_count: "73.2K reels",
|
|
6121
|
-
hide_remixing: true,
|
|
6122
|
-
is_audio_automatically_attributed: false,
|
|
6123
|
-
is_eligible_for_audio_effects: true,
|
|
6124
|
-
is_eligible_for_vinyl_sticker: true,
|
|
6125
|
-
is_explicit: false,
|
|
6126
|
-
is_original_audio_download_eligible: true,
|
|
6127
|
-
is_reuse_disabled: false,
|
|
6128
|
-
is_xpost_from_fb: false,
|
|
6129
|
-
music_canonical_id: null,
|
|
6130
|
-
oa_owner_is_music_artist: false,
|
|
6131
|
-
original_audio_subtype: "default",
|
|
6132
|
-
original_audio_title: "Original audio",
|
|
6133
|
-
original_media_id: "3654833327629868757",
|
|
6134
|
-
progressive_download_url:
|
|
6135
|
-
"https://video.fphl1-1.fna.fbcdn.net/o1/v/t2/f2/m69/AQO2X0DudEOCEIxvP7S4xkiZSrH3gsqhyKV3xNj0YDoHCM4YkZ_Aoa5RncIWoNmxlSroIiymo5SmK8NlFLCF0EBO.mp4?strext=1&_nc_cat=101&_nc_oc=AdkzqY-zNGhyRtpe1_yCAtXU6owXgWf-m7gRA68lTwH_47B22AZLsZrht0sAQRubn1Y&_nc_sid=8bf8fe&_nc_ht=video.fphl1-1.fna.fbcdn.net&_nc_ohc=hU0QRRLeQ7oQ7kNvwG--TDw&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5BVURJT19PTkxZLi5DMy4wLnByb2dyZXNzaXZlX2F1ZGlvIiwieHB2X2Fzc2V0X2lkIjo3NTYyMDE0NzY4NDg1OTgsInZpX3VzZWNhc2VfaWQiOjEwMDk5LCJkdXJhdGlvbl9zIjoxMSwidXJsZ2VuX3NvdXJjZSI6Ind3dyJ9&ccb=17-1&_nc_zt=28&oh=00_AfPRVtzLHDwFL_BeJb2EAE5Nw29U7hEYUYKx68FyQ8AgsA&oe=686CA2DD",
|
|
6136
|
-
should_mute_audio: false,
|
|
6137
|
-
time_created: 1749910300,
|
|
6138
|
-
trend_rank: null,
|
|
6139
|
-
previous_trend_rank: null,
|
|
6140
|
-
overlap_duration_in_ms: null,
|
|
6141
|
-
audio_asset_start_time_in_ms: null,
|
|
6142
|
-
ig_artist: {
|
|
6143
|
-
pk: "48370406447",
|
|
6144
|
-
pk_id: "48370406447",
|
|
6145
|
-
id: "48370406447",
|
|
6146
|
-
username: "wingfoilracing",
|
|
6147
|
-
full_name: "WingFoil Racing World Cup Series",
|
|
6148
|
-
is_private: false,
|
|
6149
|
-
is_verified: false,
|
|
6150
|
-
profile_pic_id: "3433580616147483629_48370406447",
|
|
6151
|
-
profile_pic_url:
|
|
6152
|
-
"https://instagram.fphl1-1.fna.fbcdn.net/v/t51.2885-19/454879680_1003083001515729_7015428953832478410_n.jpg?stp=dst-jpg_s150x150_tt6&_nc_ht=instagram.fphl1-1.fna.fbcdn.net&_nc_cat=109&_nc_oc=Q6cZ2QHwFOVHnJvsBgBFTlQkpmw9LT3prcqmCNJ-P1eIMlFb9rWTYs-igOuwG_rhNMorPkg&_nc_ohc=e4j67q9m6jcQ7kNvwHJx89z&_nc_gid=5wVbPsMy2jJfVfnxPxnFXg&edm=ACaJ6XgBAAAA&ccb=7-5&oh=00_AfORqRWB23CVv7nimJ8Tdq-aSGXmFrL0WNP_ju8e-5fqsA&oe=686CA073&_nc_sid=594fa5",
|
|
6153
|
-
strong_id__: "48370406447",
|
|
6154
|
-
},
|
|
6155
|
-
audio_filter_infos: [],
|
|
6156
|
-
audio_parts: [],
|
|
6157
|
-
audio_parts_by_filter: [],
|
|
6158
|
-
consumption_info: {
|
|
6159
|
-
display_media_id: null,
|
|
6160
|
-
is_bookmarked: false,
|
|
6161
|
-
is_trending_in_clips: false,
|
|
6162
|
-
should_mute_audio_reason: "",
|
|
6163
|
-
should_mute_audio_reason_type: null,
|
|
6164
|
-
user_notes: null,
|
|
6165
|
-
},
|
|
6166
|
-
xpost_fb_creator_info: null,
|
|
6167
|
-
fb_downstream_use_xpost_metadata: {
|
|
6168
|
-
downstream_use_xpost_deny_reason: "NONE",
|
|
6169
|
-
},
|
|
6170
|
-
},
|
|
6171
|
-
creative_config_info: null,
|
|
6172
|
-
additional_audio_info: null,
|
|
6173
|
-
},
|
|
6174
|
-
audio_ranking_info: {
|
|
6175
|
-
best_audio_cluster_id: "5209534055764708",
|
|
6176
|
-
},
|
|
6177
|
-
is_music_page_restricted: false,
|
|
6178
|
-
audio_page_segments: [],
|
|
6179
|
-
available_tabs: ["clips"],
|
|
6180
|
-
media_count: {
|
|
6181
|
-
clips_count: 73245,
|
|
6182
|
-
photos_count: 0,
|
|
6183
|
-
},
|
|
6184
|
-
auto_created_reels_preview_metadata: [],
|
|
6185
|
-
status: "ok",
|
|
6186
|
-
},
|
|
6187
|
-
},
|
|
6188
5523
|
{
|
|
6189
5524
|
name: "Embed HTML",
|
|
6190
5525
|
method: "GET",
|