@adaptive-ds/n8n-nodes-publer 1.0.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.
@@ -0,0 +1,1144 @@
1
+ {
2
+ "openapi": "3.0.0",
3
+ "info": {
4
+ "title": "Publer API",
5
+ "description": "Welcome to the **Publer API** collection!\n\nThis API enables developers, agencies, and marketing teams to automate social media workflows, integrate advanced scheduling tools, and manage multiple brands at scale—all from your own applications.\n\n---\n\n## What is the Publer API?\n\nThe Publer API is a modern, RESTful JSON interface designed for seamless social media automation. It lets you programmatically access and manage all core functions of the Publer platform, including:\n\n- **Publishing & Scheduling** \n Draft, schedule, auto-schedule, or instantly publish posts (including bulk and recurring content) across 13+ supported social platforms.\n \n- **Media Management** \n Upload, organize, and attach media—images, videos, GIFs, PDFs, and more. Apply watermarks and manage media libraries per workspace or account.\n \n- **Workspace & Collaboration** \n Manage teams, clients, and brands through isolated workspaces. Retrieve user profiles, permissions, and organize content by workspace.\n \n- **Advanced Features** \n Automate post actions (auto-share, follow-up comments, auto-delete), append branded signatures, use location tags, and customize posts with platform-specific features.\n \n\n---\n\n## Supported Social Networks\n\nPublish and manage content on:\n\n- Facebook, Instagram, Twitter/X, LinkedIn, Pinterest, YouTube, TikTok, Google Business Profile, WordPress, Telegram, Mastodon, Threads, and Bluesky.\n \n\n---\n\n## Core Capabilities\n\n- **Content Types:** \n Status updates, images, videos, reels, stories, polls, PDFs, links, carousels, events, offers, and more.\n \n- **Bulk Scheduling:** \n Schedule up to 500 posts in a single request for efficient multi-account planning.\n \n- **Media Options:** \n Organize Facebook albums, Pinterest boards, and apply account-specific watermarks.\n \n- **Branding & Protection:** \n Use signatures and watermarks to reinforce your brand and protect creative assets.\n \n\n---\n\n## How to Get Started\n\n1. **Generate an API Key**\n \n - Sign in with Ambassador or Enterprise access.\n \n - Go to `Settings → Access & Login → API Keys`, generate a key, and copy it securely.\n \n2. **List Your Workspaces & Accounts**\n \n - Use the API to retrieve workspace and account IDs for all actions.\n \n3. **Upload Media (Optional)**\n \n - Upload images, videos, or docs to get reusable media IDs.\n \n4. **Create & Schedule Posts**\n \n - Use the Posts API to draft, schedule, or bulk publish content across your accounts.\n \n5. **Monitor Jobs**\n \n - Every action returns a job ID—track and analyze your posts programmatically.\n \n\n---\n\n## Best Practices\n\n- Store and manage API keys securely.\n \n- Use the minimum scopes required for your integrations.\n \n- Comply with posting limits and content guidelines for each platform.\n \n- Use `alt_text` for accessible images.\n \n\n---\n\n## Documentation & Support\n\n- For full endpoint details, examples, and best practices, refer to the [Publer API Documentation](https://publer.com/docs).\n \n\n---\n\n**Build smarter. Automate faster. Take control of your social content with the Publer API!**",
6
+ "version": "1.0.0"
7
+ },
8
+ "servers": [
9
+ {
10
+ "url": "http://{{url}}"
11
+ }
12
+ ],
13
+ "components": {
14
+ "securitySchemes": {
15
+ "apikeyAuth": {
16
+ "type": "http",
17
+ "scheme": "apikey"
18
+ }
19
+ }
20
+ },
21
+ "security": [
22
+ {
23
+ "apikeyAuth": []
24
+ }
25
+ ],
26
+ "tags": [
27
+ {
28
+ "name": "USERS"
29
+ },
30
+ {
31
+ "name": "WORKSPACES"
32
+ },
33
+ {
34
+ "name": "ACCOUNTS"
35
+ },
36
+ {
37
+ "name": "MEDIA"
38
+ },
39
+ {
40
+ "name": "POSTS"
41
+ },
42
+ {
43
+ "name": "POSTS > PUBLISHING METHODS"
44
+ },
45
+ {
46
+ "name": "POSTS > PUBLISHING METHODS > DRAFTS"
47
+ },
48
+ {
49
+ "name": "POSTS > PUBLISHING METHODS > AUTO SCHEDULE"
50
+ },
51
+ {
52
+ "name": "POSTS > CONTENT TYPES"
53
+ },
54
+ {
55
+ "name": "POSTS > CONTENT TYPES > NETWORK-SPECIFIK TYPES"
56
+ },
57
+ {
58
+ "name": "JOB STATUS"
59
+ },
60
+ {
61
+ "name": "LOCATIONS"
62
+ },
63
+ {
64
+ "name": "ANALYTICS"
65
+ }
66
+ ],
67
+ "paths": {
68
+ "/api/v1/users/me": {
69
+ "get": {
70
+ "tags": [
71
+ "USERS"
72
+ ],
73
+ "summary": "ME",
74
+ "responses": {
75
+ "200": {
76
+ "description": "Successful response",
77
+ "content": {
78
+ "application/json": {}
79
+ }
80
+ }
81
+ }
82
+ }
83
+ },
84
+ "/api/v1/workspaces": {
85
+ "get": {
86
+ "tags": [
87
+ "WORKSPACES"
88
+ ],
89
+ "summary": "FETCH WORKSPACES",
90
+ "responses": {
91
+ "200": {
92
+ "description": "Successful response",
93
+ "content": {
94
+ "application/json": {}
95
+ }
96
+ }
97
+ }
98
+ }
99
+ },
100
+ "/api/v1/workspaces/{workspace_id}/signatures": {
101
+ "get": {
102
+ "tags": [
103
+ "WORKSPACES"
104
+ ],
105
+ "summary": "FETCH SIGNATURES",
106
+ "parameters": [
107
+ {
108
+ "name": "accounts[]",
109
+ "in": "query",
110
+ "schema": {
111
+ "type": "string"
112
+ },
113
+ "example": "647a0edddb2797b89044e2c1"
114
+ },
115
+ {
116
+ "name": "workspace_id",
117
+ "in": "path",
118
+ "schema": {
119
+ "type": "string"
120
+ },
121
+ "required": true
122
+ }
123
+ ],
124
+ "responses": {
125
+ "200": {
126
+ "description": "Successful response",
127
+ "content": {
128
+ "application/json": {}
129
+ }
130
+ }
131
+ }
132
+ }
133
+ },
134
+ "/api/v1/workspaces/{workspace_id}/media_options": {
135
+ "get": {
136
+ "tags": [
137
+ "WORKSPACES"
138
+ ],
139
+ "summary": "FETCH MEDIA OPTIONS",
140
+ "parameters": [
141
+ {
142
+ "name": "accounts[]",
143
+ "in": "query",
144
+ "schema": {
145
+ "type": "string"
146
+ },
147
+ "example": "661ce240db2797a7148a6b49"
148
+ },
149
+ {
150
+ "name": "workspace_id",
151
+ "in": "path",
152
+ "schema": {
153
+ "type": "string"
154
+ },
155
+ "required": true
156
+ }
157
+ ],
158
+ "responses": {
159
+ "200": {
160
+ "description": "Successful response",
161
+ "content": {
162
+ "application/json": {}
163
+ }
164
+ }
165
+ }
166
+ }
167
+ },
168
+ "/api/v1/accounts": {
169
+ "get": {
170
+ "tags": [
171
+ "ACCOUNTS"
172
+ ],
173
+ "summary": "ACCOUNTS",
174
+ "parameters": [
175
+ {
176
+ "name": "Publer-Workspace-Id",
177
+ "in": "header",
178
+ "schema": {
179
+ "type": "string"
180
+ },
181
+ "example": "{{workspace_id}}"
182
+ }
183
+ ],
184
+ "responses": {
185
+ "200": {
186
+ "description": "Successful response",
187
+ "content": {
188
+ "application/json": {}
189
+ }
190
+ }
191
+ }
192
+ }
193
+ },
194
+ "/api/v1/media": {
195
+ "get": {
196
+ "tags": [
197
+ "MEDIA"
198
+ ],
199
+ "summary": "LIST MEDIA",
200
+ "parameters": [
201
+ {
202
+ "name": "Publer-Workspace-Id",
203
+ "in": "header",
204
+ "schema": {
205
+ "type": "string"
206
+ },
207
+ "example": "{{workspace_id}}"
208
+ },
209
+ {
210
+ "name": "types[]",
211
+ "in": "query",
212
+ "schema": {
213
+ "type": "string"
214
+ },
215
+ "example": "photo"
216
+ },
217
+ {
218
+ "name": "used[]",
219
+ "in": "query",
220
+ "schema": {
221
+ "type": "boolean"
222
+ },
223
+ "example": "false"
224
+ }
225
+ ],
226
+ "responses": {
227
+ "200": {
228
+ "description": "Successful response",
229
+ "content": {
230
+ "application/json": {}
231
+ }
232
+ }
233
+ }
234
+ }
235
+ },
236
+ "/api/v1/media/": {
237
+ "post": {
238
+ "tags": [
239
+ "MEDIA"
240
+ ],
241
+ "summary": "UPLOAD FILE",
242
+ "requestBody": {
243
+ "content": {
244
+ "multipart/form-data": {
245
+ "schema": {
246
+ "type": "object",
247
+ "properties": {
248
+ "file": {
249
+ "type": "string",
250
+ "format": "binary"
251
+ },
252
+ "direct_upload": {
253
+ "type": "boolean",
254
+ "example": "false"
255
+ },
256
+ "in_library": {
257
+ "type": "boolean",
258
+ "example": "true"
259
+ }
260
+ }
261
+ }
262
+ }
263
+ }
264
+ },
265
+ "parameters": [
266
+ {
267
+ "name": "Publer-Workspace-Id",
268
+ "in": "header",
269
+ "schema": {
270
+ "type": "string"
271
+ },
272
+ "example": "{{workspace_id}}"
273
+ }
274
+ ],
275
+ "responses": {
276
+ "200": {
277
+ "description": "Successful response",
278
+ "content": {
279
+ "application/json": {}
280
+ }
281
+ }
282
+ }
283
+ }
284
+ },
285
+ "/api/v1/media/from-url": {
286
+ "post": {
287
+ "tags": [
288
+ "MEDIA"
289
+ ],
290
+ "summary": "UPLOAD FROM URL",
291
+ "requestBody": {
292
+ "content": {
293
+ "application/json": {
294
+ "schema": {
295
+ "type": "object",
296
+ "example": {
297
+ "media": [
298
+ {
299
+ "url": "https://api.unsplash.com/photos/910B32-V0E4/download?ixid=M3wxNjI3NDR8MHwxfGFsbHw1M3x8fHx8fDJ8fDE3NDk2MzE4MzN8&client_id=F2Rc11lPwYuERzKFAPluEfH_QYb_mM7qI6_6PGT55ZI",
300
+ "name": "Whirpool",
301
+ "caption": "Photo by Fadhil Abhimantra on Unsplash:\n\nhttps://unsplash.com/photos/waves-crash-against-a-rocky-coastline-910B32-V0E4",
302
+ "source": "unsplash"
303
+ }
304
+ ],
305
+ "type": "single",
306
+ "direct_upload": false,
307
+ "in_library": true
308
+ }
309
+ }
310
+ }
311
+ }
312
+ },
313
+ "parameters": [
314
+ {
315
+ "name": "Publer-Workspace-Id",
316
+ "in": "header",
317
+ "schema": {
318
+ "type": "string"
319
+ },
320
+ "example": "{{workspace_id}}"
321
+ }
322
+ ],
323
+ "responses": {
324
+ "200": {
325
+ "description": "Successful response",
326
+ "content": {
327
+ "application/json": {}
328
+ }
329
+ }
330
+ }
331
+ }
332
+ },
333
+ "/api/v1/posts/schedule": {
334
+ "post": {
335
+ "tags": [
336
+ "POSTS > CONTENT TYPES"
337
+ ],
338
+ "summary": "POST WITH LOCATIONS",
339
+ "requestBody": {
340
+ "content": {
341
+ "application/json": {
342
+ "schema": {
343
+ "type": "object",
344
+ "example": {
345
+ "bulk": {
346
+ "state": "scheduled",
347
+ "posts": [
348
+ {
349
+ "networks": {
350
+ "facebook": {
351
+ "type": "status",
352
+ "text": "Facebook location"
353
+ }
354
+ },
355
+ "accounts": [
356
+ {
357
+ "id": "647a0edddb2797b89044e2c1",
358
+ "scheduled_at": "2025-06-14T10:21+02:00",
359
+ "location": {
360
+ "id": "308281375929281",
361
+ "name": "Tirana",
362
+ "info": "Tirana, Albania ⋅ 590 follow this",
363
+ "verified": null,
364
+ "address": "Tirana, Albania",
365
+ "checkins": "590"
366
+ }
367
+ }
368
+ ]
369
+ }
370
+ ]
371
+ }
372
+ }
373
+ }
374
+ }
375
+ }
376
+ },
377
+ "parameters": [
378
+ {
379
+ "name": "Publer-Workspace-Id",
380
+ "in": "header",
381
+ "schema": {
382
+ "type": "string"
383
+ },
384
+ "example": "{{workspace_id}}"
385
+ }
386
+ ],
387
+ "responses": {
388
+ "200": {
389
+ "description": "Successful response",
390
+ "content": {
391
+ "application/json": {}
392
+ }
393
+ }
394
+ }
395
+ }
396
+ },
397
+ "/api/v1/posts/schedule/publish": {
398
+ "post": {
399
+ "tags": [
400
+ "POSTS > PUBLISHING METHODS"
401
+ ],
402
+ "summary": "PUBLISH",
403
+ "requestBody": {
404
+ "content": {
405
+ "application/json": {
406
+ "schema": {
407
+ "type": "object",
408
+ "example": {
409
+ "bulk": {
410
+ "state": "scheduled",
411
+ "url": "publish",
412
+ "posts": [
413
+ {
414
+ "networks": {
415
+ "facebook": {
416
+ "type": "status",
417
+ "text": "Just published this update via the Publer API! #RealTimePosting"
418
+ }
419
+ },
420
+ "accounts": [
421
+ {
422
+ "id": "647a0edddb2797b89044e2c1"
423
+ }
424
+ ]
425
+ }
426
+ ]
427
+ }
428
+ }
429
+ }
430
+ }
431
+ }
432
+ },
433
+ "parameters": [
434
+ {
435
+ "name": "Publer-Workspace-Id",
436
+ "in": "header",
437
+ "schema": {
438
+ "type": "string"
439
+ },
440
+ "example": "{{workspace_id}}"
441
+ }
442
+ ],
443
+ "responses": {
444
+ "200": {
445
+ "description": "Successful response",
446
+ "content": {
447
+ "application/json": {}
448
+ }
449
+ }
450
+ }
451
+ }
452
+ },
453
+ "/api/v1/posts": {
454
+ "get": {
455
+ "tags": [
456
+ "POSTS"
457
+ ],
458
+ "summary": "GET POSTS",
459
+ "parameters": [
460
+ {
461
+ "name": "Publer-Workspace-Id",
462
+ "in": "header",
463
+ "schema": {
464
+ "type": "string"
465
+ },
466
+ "example": "{{workspace_id}}"
467
+ },
468
+ {
469
+ "name": "state",
470
+ "in": "query",
471
+ "schema": {
472
+ "type": "string"
473
+ },
474
+ "example": "scheduled"
475
+ },
476
+ {
477
+ "name": "page",
478
+ "in": "query",
479
+ "schema": {
480
+ "type": "integer"
481
+ },
482
+ "example": "0"
483
+ }
484
+ ],
485
+ "responses": {
486
+ "200": {
487
+ "description": "Successful response",
488
+ "content": {
489
+ "application/json": {}
490
+ }
491
+ }
492
+ }
493
+ },
494
+ "delete": {
495
+ "tags": [
496
+ "POSTS"
497
+ ],
498
+ "summary": "DELETE POSTS",
499
+ "parameters": [
500
+ {
501
+ "name": "Publer-Workspace-Id",
502
+ "in": "header",
503
+ "schema": {
504
+ "type": "string"
505
+ },
506
+ "example": "{{workspace_id}}"
507
+ },
508
+ {
509
+ "name": "post_ids[]",
510
+ "in": "query",
511
+ "schema": {
512
+ "type": "string"
513
+ },
514
+ "example": "684945796a88bf9baa9c182c"
515
+ }
516
+ ],
517
+ "responses": {
518
+ "200": {
519
+ "description": "Successful response",
520
+ "content": {
521
+ "application/json": {}
522
+ }
523
+ }
524
+ }
525
+ }
526
+ },
527
+ "/api/v1/posts/links": {
528
+ "post": {
529
+ "tags": [
530
+ "POSTS"
531
+ ],
532
+ "summary": "EXTRACT LINK METADATA",
533
+ "requestBody": {
534
+ "content": {
535
+ "application/json": {
536
+ "schema": {
537
+ "type": "object",
538
+ "example": {
539
+ "url": "publer.com"
540
+ }
541
+ }
542
+ }
543
+ }
544
+ },
545
+ "responses": {
546
+ "200": {
547
+ "description": "Successful response",
548
+ "content": {
549
+ "application/json": {}
550
+ }
551
+ }
552
+ }
553
+ }
554
+ },
555
+ "/api/v1/posts/684945796a88bf9baa9c182c": {
556
+ "put": {
557
+ "tags": [
558
+ "POSTS"
559
+ ],
560
+ "summary": "UPDATE POST",
561
+ "requestBody": {
562
+ "content": {
563
+ "application/json": {
564
+ "schema": {
565
+ "type": "object",
566
+ "example": {
567
+ "post": {
568
+ "text": "Status Update UPDATED",
569
+ "title": null
570
+ }
571
+ }
572
+ }
573
+ }
574
+ }
575
+ },
576
+ "parameters": [
577
+ {
578
+ "name": "Publer-Workspace-Id",
579
+ "in": "header",
580
+ "schema": {
581
+ "type": "string"
582
+ },
583
+ "example": "{{workspace_id}}"
584
+ }
585
+ ],
586
+ "responses": {
587
+ "200": {
588
+ "description": "Successful response",
589
+ "content": {
590
+ "application/json": {}
591
+ }
592
+ }
593
+ }
594
+ }
595
+ },
596
+ "/api/v1/job_status/6849530cdd9d40170723cd66": {
597
+ "get": {
598
+ "tags": [
599
+ "JOB STATUS"
600
+ ],
601
+ "summary": "JOB STATUS",
602
+ "parameters": [
603
+ {
604
+ "name": "Publer-Workspace-Id",
605
+ "in": "header",
606
+ "schema": {
607
+ "type": "string"
608
+ },
609
+ "example": "{{workspace_id}}"
610
+ }
611
+ ],
612
+ "responses": {
613
+ "200": {
614
+ "description": "Successful response",
615
+ "content": {
616
+ "application/json": {}
617
+ }
618
+ }
619
+ }
620
+ }
621
+ },
622
+ "/api/v1/locations/instagram": {
623
+ "get": {
624
+ "tags": [
625
+ "LOCATIONS"
626
+ ],
627
+ "summary": "INSTAGRAM LOCATIONS",
628
+ "parameters": [
629
+ {
630
+ "name": "Publer-Workspace-Id",
631
+ "in": "header",
632
+ "schema": {
633
+ "type": "string"
634
+ },
635
+ "example": "{{workspace_id}}"
636
+ },
637
+ {
638
+ "name": "q",
639
+ "in": "query",
640
+ "schema": {
641
+ "type": "string"
642
+ },
643
+ "example": "Tirana\n"
644
+ }
645
+ ],
646
+ "responses": {
647
+ "200": {
648
+ "description": "Successful response",
649
+ "content": {
650
+ "application/json": {}
651
+ }
652
+ }
653
+ }
654
+ }
655
+ },
656
+ "/api/v1/locations/facebook": {
657
+ "get": {
658
+ "tags": [
659
+ "LOCATIONS"
660
+ ],
661
+ "summary": "FACEBOOK LOCATIONS",
662
+ "parameters": [
663
+ {
664
+ "name": "Publer-Workspace-Id",
665
+ "in": "header",
666
+ "schema": {
667
+ "type": "string"
668
+ },
669
+ "example": "{{workspace_id}}"
670
+ },
671
+ {
672
+ "name": "q",
673
+ "in": "query",
674
+ "schema": {
675
+ "type": "string"
676
+ },
677
+ "example": "Tirana\n"
678
+ }
679
+ ],
680
+ "responses": {
681
+ "200": {
682
+ "description": "Successful response",
683
+ "content": {
684
+ "application/json": {}
685
+ }
686
+ }
687
+ }
688
+ }
689
+ },
690
+ "/api/v1/locations/threads": {
691
+ "get": {
692
+ "tags": [
693
+ "LOCATIONS"
694
+ ],
695
+ "summary": "THREADS LOCATIONS",
696
+ "parameters": [
697
+ {
698
+ "name": "Publer-Workspace-Id",
699
+ "in": "header",
700
+ "schema": {
701
+ "type": "string"
702
+ },
703
+ "example": "{{workspace_id}}"
704
+ },
705
+ {
706
+ "name": "q",
707
+ "in": "query",
708
+ "schema": {
709
+ "type": "string"
710
+ },
711
+ "example": "Tirana\n"
712
+ }
713
+ ],
714
+ "responses": {
715
+ "200": {
716
+ "description": "Successful response",
717
+ "content": {
718
+ "application/json": {}
719
+ }
720
+ }
721
+ }
722
+ }
723
+ },
724
+ "/api/v1/analytics/charts": {
725
+ "get": {
726
+ "tags": [
727
+ "ANALYTICS"
728
+ ],
729
+ "summary": "GET CHARTS",
730
+ "parameters": [
731
+ {
732
+ "name": "Publer-Workspace-Id",
733
+ "in": "header",
734
+ "schema": {
735
+ "type": "string"
736
+ },
737
+ "example": "{{workspace_id}}"
738
+ }
739
+ ],
740
+ "responses": {
741
+ "200": {
742
+ "description": "Successful response",
743
+ "content": {
744
+ "application/json": {}
745
+ }
746
+ }
747
+ }
748
+ }
749
+ },
750
+ "/api/v1/analytics/{account_id}/chart_data": {
751
+ "get": {
752
+ "tags": [
753
+ "ANALYTICS"
754
+ ],
755
+ "summary": "CHARTS DATA",
756
+ "parameters": [
757
+ {
758
+ "name": "Publer-Workspace-Id",
759
+ "in": "header",
760
+ "schema": {
761
+ "type": "string"
762
+ },
763
+ "example": "{{workspace_id}}"
764
+ },
765
+ {
766
+ "name": "from",
767
+ "in": "query",
768
+ "schema": {
769
+ "type": "string"
770
+ },
771
+ "example": "2025-03-21"
772
+ },
773
+ {
774
+ "name": "to",
775
+ "in": "query",
776
+ "schema": {
777
+ "type": "string"
778
+ },
779
+ "example": "2025-08-18"
780
+ },
781
+ {
782
+ "name": "chart_ids[]",
783
+ "in": "query",
784
+ "schema": {
785
+ "type": "string"
786
+ },
787
+ "example": "followers"
788
+ },
789
+ {
790
+ "name": "account_id",
791
+ "in": "path",
792
+ "schema": {
793
+ "type": "string"
794
+ },
795
+ "required": true
796
+ }
797
+ ],
798
+ "responses": {
799
+ "200": {
800
+ "description": "Successful response",
801
+ "content": {
802
+ "application/json": {}
803
+ }
804
+ }
805
+ }
806
+ }
807
+ },
808
+ "/api/v1/analytics/{account_id}/post_insights": {
809
+ "get": {
810
+ "tags": [
811
+ "ANALYTICS"
812
+ ],
813
+ "summary": "POST INSIGHTS",
814
+ "parameters": [
815
+ {
816
+ "name": "Publer-Workspace-Id",
817
+ "in": "header",
818
+ "schema": {
819
+ "type": "string"
820
+ },
821
+ "example": "{{workspace_id}}"
822
+ },
823
+ {
824
+ "name": "from",
825
+ "in": "query",
826
+ "schema": {
827
+ "type": "string"
828
+ },
829
+ "example": "2025-05-13"
830
+ },
831
+ {
832
+ "name": "to",
833
+ "in": "query",
834
+ "schema": {
835
+ "type": "string"
836
+ },
837
+ "example": "2025-08-10"
838
+ },
839
+ {
840
+ "name": "page",
841
+ "in": "query",
842
+ "schema": {
843
+ "type": "integer"
844
+ },
845
+ "example": "0"
846
+ },
847
+ {
848
+ "name": "account_id",
849
+ "in": "path",
850
+ "schema": {
851
+ "type": "string"
852
+ },
853
+ "required": true
854
+ }
855
+ ],
856
+ "responses": {
857
+ "200": {
858
+ "description": "Successful response",
859
+ "content": {
860
+ "application/json": {}
861
+ }
862
+ }
863
+ }
864
+ }
865
+ },
866
+ "/api/v1/analytics/{account_id}/hashtag_insights": {
867
+ "get": {
868
+ "tags": [
869
+ "ANALYTICS"
870
+ ],
871
+ "summary": "HASHTAG INSIGHTS",
872
+ "parameters": [
873
+ {
874
+ "name": "Publer-Workspace-Id",
875
+ "in": "header",
876
+ "schema": {
877
+ "type": "string"
878
+ },
879
+ "example": "{{workspace_id}}"
880
+ },
881
+ {
882
+ "name": "from",
883
+ "in": "query",
884
+ "schema": {
885
+ "type": "string"
886
+ },
887
+ "example": "2025-07-15"
888
+ },
889
+ {
890
+ "name": "to",
891
+ "in": "query",
892
+ "schema": {
893
+ "type": "string"
894
+ },
895
+ "example": "2025-08-11"
896
+ },
897
+ {
898
+ "name": "account_id",
899
+ "in": "path",
900
+ "schema": {
901
+ "type": "string"
902
+ },
903
+ "required": true
904
+ }
905
+ ],
906
+ "responses": {
907
+ "200": {
908
+ "description": "Successful response",
909
+ "content": {
910
+ "application/json": {}
911
+ }
912
+ }
913
+ }
914
+ }
915
+ },
916
+ "/api/v1/analytics/{account_id}/hashtag_performing_posts": {
917
+ "get": {
918
+ "tags": [
919
+ "ANALYTICS"
920
+ ],
921
+ "summary": "HASHTAG PERFOMING POSTS",
922
+ "parameters": [
923
+ {
924
+ "name": "Publer-Workspace-Id",
925
+ "in": "header",
926
+ "schema": {
927
+ "type": "string"
928
+ },
929
+ "example": "{{workspace_id}}"
930
+ },
931
+ {
932
+ "name": "hashtag",
933
+ "in": "query",
934
+ "schema": {
935
+ "type": "string"
936
+ },
937
+ "description": "#smm",
938
+ "example": "%23smm"
939
+ },
940
+ {
941
+ "name": "from",
942
+ "in": "query",
943
+ "schema": {
944
+ "type": "string"
945
+ },
946
+ "example": "2025-01-31"
947
+ },
948
+ {
949
+ "name": "to",
950
+ "in": "query",
951
+ "schema": {
952
+ "type": "string"
953
+ },
954
+ "example": "2025-12-31"
955
+ },
956
+ {
957
+ "name": "account_id",
958
+ "in": "path",
959
+ "schema": {
960
+ "type": "string"
961
+ },
962
+ "required": true
963
+ }
964
+ ],
965
+ "responses": {
966
+ "200": {
967
+ "description": "Successful response",
968
+ "content": {
969
+ "application/json": {}
970
+ }
971
+ }
972
+ }
973
+ }
974
+ },
975
+ "/api/v1/analytics/{account_id}best_times": {
976
+ "get": {
977
+ "tags": [
978
+ "ANALYTICS"
979
+ ],
980
+ "summary": "BEST TIMES TO POST",
981
+ "parameters": [
982
+ {
983
+ "name": "Publer-Workspace-Id",
984
+ "in": "header",
985
+ "schema": {
986
+ "type": "string"
987
+ },
988
+ "example": "{{workspace_id}}"
989
+ },
990
+ {
991
+ "name": "from",
992
+ "in": "query",
993
+ "schema": {
994
+ "type": "string"
995
+ },
996
+ "example": "2024-01-01"
997
+ },
998
+ {
999
+ "name": "to",
1000
+ "in": "query",
1001
+ "schema": {
1002
+ "type": "string"
1003
+ },
1004
+ "example": "2024-12-31"
1005
+ },
1006
+ {
1007
+ "name": "account_id",
1008
+ "in": "path",
1009
+ "schema": {
1010
+ "type": "string"
1011
+ },
1012
+ "required": true
1013
+ }
1014
+ ],
1015
+ "responses": {
1016
+ "200": {
1017
+ "description": "Successful response",
1018
+ "content": {
1019
+ "application/json": {}
1020
+ }
1021
+ }
1022
+ }
1023
+ }
1024
+ },
1025
+ "/api/v1/analytics/members": {
1026
+ "get": {
1027
+ "tags": [
1028
+ "ANALYTICS"
1029
+ ],
1030
+ "summary": "MEMBERS",
1031
+ "parameters": [
1032
+ {
1033
+ "name": "Publer-Workspace-Id",
1034
+ "in": "header",
1035
+ "schema": {
1036
+ "type": "string"
1037
+ },
1038
+ "example": "{{workspace_id}}"
1039
+ },
1040
+ {
1041
+ "name": "from",
1042
+ "in": "query",
1043
+ "schema": {
1044
+ "type": "string"
1045
+ },
1046
+ "example": "2025-07-16"
1047
+ },
1048
+ {
1049
+ "name": "to",
1050
+ "in": "query",
1051
+ "schema": {
1052
+ "type": "string"
1053
+ },
1054
+ "example": "2025-08-12"
1055
+ }
1056
+ ],
1057
+ "responses": {
1058
+ "200": {
1059
+ "description": "Successful response",
1060
+ "content": {
1061
+ "application/json": {}
1062
+ }
1063
+ }
1064
+ }
1065
+ }
1066
+ },
1067
+ "/api/v1/competitors": {
1068
+ "get": {
1069
+ "tags": [
1070
+ "ANALYTICS"
1071
+ ],
1072
+ "summary": "COMPETITORS",
1073
+ "parameters": [
1074
+ {
1075
+ "name": "Publer-Workspace-Id",
1076
+ "in": "header",
1077
+ "schema": {
1078
+ "type": "string"
1079
+ },
1080
+ "example": "{{workspace_id}}"
1081
+ }
1082
+ ],
1083
+ "responses": {
1084
+ "200": {
1085
+ "description": "Successful response",
1086
+ "content": {
1087
+ "application/json": {}
1088
+ }
1089
+ }
1090
+ }
1091
+ }
1092
+ },
1093
+ "/api/v1/competitors/66e011b94e299eb49376c715/analytics": {
1094
+ "get": {
1095
+ "tags": [
1096
+ "ANALYTICS"
1097
+ ],
1098
+ "summary": "COMPETITORS ANALYTICS",
1099
+ "parameters": [
1100
+ {
1101
+ "name": "Publer-Workspace-Id",
1102
+ "in": "header",
1103
+ "schema": {
1104
+ "type": "string"
1105
+ },
1106
+ "example": "{{workspace_id}}"
1107
+ },
1108
+ {
1109
+ "name": "from",
1110
+ "in": "query",
1111
+ "schema": {
1112
+ "type": "string"
1113
+ },
1114
+ "example": "2025-07-16"
1115
+ },
1116
+ {
1117
+ "name": "to",
1118
+ "in": "query",
1119
+ "schema": {
1120
+ "type": "string"
1121
+ },
1122
+ "example": "2025-08-12"
1123
+ },
1124
+ {
1125
+ "name": "page",
1126
+ "in": "query",
1127
+ "schema": {
1128
+ "type": "integer"
1129
+ },
1130
+ "example": "0"
1131
+ }
1132
+ ],
1133
+ "responses": {
1134
+ "200": {
1135
+ "description": "Successful response",
1136
+ "content": {
1137
+ "application/json": {}
1138
+ }
1139
+ }
1140
+ }
1141
+ }
1142
+ }
1143
+ }
1144
+ }