-
Notifications
You must be signed in to change notification settings - Fork 5
/
openapi.yaml
2079 lines (2079 loc) · 54.9 KB
/
openapi.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
openapi: 3.0.0
info:
title: Flickr API Schema
description: A subset of Flickr's API defined in Swagger format.
version: 1.0.0
contact:
x-twitter: Flickr
termsOfService: https://www.flickr.com/services/api/tos/
x-apisguru-categories:
- media
x-logo:
url: https://twitter.com/Flickr/profile_image?size=original
x-origin:
- version: '3.0'
format: openapi
url: >-
https://raw.githubusercontent.com/flickr/flickr-api-swagger/master/dist/schema.json
x-providerName: flickr.com
x-konfig-ignore:
object-with-no-properties: true
servers:
- url: https://api.flickr.com/services
tags:
- name: Public
paths:
/oauth/access_token:
get:
tags:
- Public
operationId: Public_getAccessToken
description: Returns an access token
parameters:
- in: query
name: oauth_consumer_key
required: true
schema:
type: string
- in: query
name: oauth_nonce
required: true
schema:
type: string
- in: query
name: oauth_timestamp
required: true
schema:
pattern: ^[0-9]+$
type: string
- in: query
name: oauth_signature_method
required: true
schema:
type: string
- in: query
name: oauth_version
required: true
schema:
type: string
- in: query
name: oauth_signature
required: true
schema:
type: string
- in: query
name: oauth_verifier
required: true
schema:
type: string
- in: query
name: oauth_token
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetAccessTokenResponse'
/oauth/request_token:
get:
tags:
- Public
operationId: Public_getOAuthToken
description: Returns an oauth token and oauth token secret
parameters:
- in: query
name: oauth_consumer_key
required: true
schema:
type: string
- in: query
name: oauth_nonce
required: true
schema:
type: string
- in: query
name: oauth_timestamp
required: true
schema:
pattern: ^[0-9]+$
type: string
- in: query
name: oauth_signature_method
required: true
schema:
type: string
- in: query
name: oauth_version
required: true
schema:
type: string
- in: query
name: oauth_signature
required: true
schema:
type: string
- in: query
name: oauth_callback
required: true
schema:
pattern: ^http.*$
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetOAuthTokenResponse'
/rest?method=flickr.favorites.getContext:
get:
tags:
- Public
operationId: Public_getFavoritesContext
description: Returns next and previous favorites for a photo in a user's favorites
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: photo_id
required: true
schema:
pattern: ^[0-9]+$
type: string
- in: query
name: user_id
required: false
schema:
pattern: ^([0-9]+@N[0-9]+)|([0-9a-zA-Z-_]+)$
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetFavoritesContextResponse'
/rest?method=flickr.favorites.getList:
get:
tags:
- Public
operationId: Public_getFavoritePhotos
description: >-
Returns a list of the user's favorite photos. Only photos which the
calling user has permission to see are returned.
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: user_id
required: true
schema:
type: string
- in: query
name: min_fave_date
schema:
type: number
- in: query
name: max_fave_date
schema:
type: number
- in: query
name: page
schema:
type: number
- in: query
name: per_page
schema:
type: number
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetFavoritePhotosResponse'
/rest?method=flickr.galleries.getPhotos:
get:
tags:
- Public
operationId: Public_getGalleryPhotos
description: Returns a list of photos in a gallery.
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: gallery_id
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetGalleryPhotosResponse'
/rest?method=flickr.groups.discuss.replies.getInfo:
get:
tags:
- Public
operationId: Public_getGroupTopicRepliesInfo
description: Get information on a group topic reply
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: group_id
required: false
schema:
pattern: ^([0-9]+@N[0-9]+)|([0-9a-zA-Z-_]+)$
type: string
- in: query
name: topic_id
required: true
schema:
pattern: ^[0-9]+$
type: string
- in: query
name: reply_id
required: true
schema:
pattern: ^[0-9]+$
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetGroupTopicRepliesInfoResponse'
/rest?method=flickr.groups.discuss.topics.getInfo:
get:
tags:
- Public
operationId: Public_getGroupTopicInfo
description: Get information about a group discussion topic
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: group_id
required: false
schema:
pattern: ^([0-9]+@N[0-9]+)|([0-9a-zA-Z-_]+)$
type: string
- in: query
name: topic_id
required: true
schema:
pattern: ^[0-9]+$
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetGroupTopicInfoResponse'
/rest?method=flickr.groups.discuss.topics.getList:
get:
tags:
- Public
operationId: Public_getGroupDiscussionTopics
description: Get a list of discussion topics in a group.
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: group_id
required: false
schema:
pattern: ^([0-9]+@N[0-9]+)|([0-9a-zA-Z-_]+)$
type: string
- in: query
name: page
schema:
type: number
- in: query
name: per_page
schema:
type: number
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetGroupDiscussionTopicsResponse'
/rest?method=flickr.groups.getInfo:
get:
tags:
- Public
operationId: Public_getGroupInfo
description: Get information about a group
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: group_id
required: false
schema:
pattern: ^([0-9]+@N[0-9]+)|([0-9a-zA-Z-_]+)$
type: string
- in: query
name: group_path_alias
required: false
schema:
type: string
- in: query
name: lang
required: false
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetGroupInfoResponse'
/rest?method=flickr.groups.pools.getContext:
get:
tags:
- Public
operationId: Public_flickrGroupsPoolsGetContext
description: Returns next and previous photos for a photo in a group pool
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: photo_id
required: true
schema:
pattern: ^[0-9]+$
type: string
- in: query
name: group_id
required: false
schema:
pattern: ^([0-9]+@N[0-9]+)|([0-9a-zA-Z-_]+)$
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicFlickrGroupsPoolsGetContextResponse'
/rest?method=flickr.groups.pools.getPhotos:
get:
tags:
- Public
operationId: Public_getGroupPoolPhotos
description: Returns a list of pool photos for a given group
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: group_id
required: false
schema:
pattern: ^([0-9]+@N[0-9]+)|([0-9a-zA-Z-_]+)$
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetGroupPoolPhotosResponse'
/rest?method=flickr.people.getInfo:
get:
tags:
- Public
operationId: Public_getPersonInformation
description: Returns a person
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: user_id
required: false
schema:
pattern: ^([0-9]+@N[0-9]+)|([0-9a-zA-Z-_]+)$
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetPersonInformationResponse'
/rest?method=flickr.people.getPhotos:
get:
tags:
- Public
operationId: Public_getUserPhotos
description: Return photos from the given user's photostream
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: user_id
required: true
schema:
type: string
- in: query
name: safe_search
schema:
type: number
- in: query
name: min_upload_date
schema:
type: number
- in: query
name: max_upload_date
schema:
type: number
- in: query
name: min_taken_date
schema:
type: number
- in: query
name: max_taken_date
schema:
type: number
- in: query
name: content_type
schema:
type: number
- in: query
name: privacy_filter
schema:
type: number
- in: query
name: page
schema:
type: number
- in: query
name: per_page
schema:
type: number
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetUserPhotosResponse'
/rest?method=flickr.photolist.getContext:
get:
tags:
- Public
operationId: Public_getPhotoListContext
description: Returns next and previous photos in a photo list
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: photo_id
required: true
schema:
pattern: ^[0-9]+$
type: string
- in: query
name: photolist_id
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetPhotoListContextResponse'
/rest?method=flickr.photos.getContext:
get:
tags:
- Public
operationId: Public_getPhotostreamContext
description: Returns next and previous photos for a photo in a photostream
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: photo_id
required: true
schema:
pattern: ^[0-9]+$
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetPhotostreamContextResponse'
/rest?method=flickr.photos.getExif:
get:
tags:
- Public
operationId: Public_getPhotoExif
description: >-
Retrieves a list of EXIF/TIFF/GPS tags for a given photo. The calling
user must have permission to view the photo.
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: photo_id
required: true
schema:
pattern: ^[0-9]+$
type: string
- in: query
name: secret
required: false
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetPhotoExifResponse'
/rest?method=flickr.photos.getInfo:
get:
tags:
- Public
operationId: Public_getPhotoInfo
description: Returns a photo
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: photo_id
required: true
schema:
pattern: ^[0-9]+$
type: string
responses:
'200':
description: a photo
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetPhotoInfoResponse'
/rest?method=flickr.photos.getSizes:
get:
tags:
- Public
operationId: Public_getPhotoSizes
description: Returns photo sizes
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- in: query
name: photo_id
required: true
schema:
pattern: ^[0-9]+$
type: string
responses:
'200':
description: Photo sizes
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetPhotoSizesResponse'
/rest?method=flickr.photos.licenses.getInfo:
get:
tags:
- Public
operationId: Public_getPhotoLicenses
description: Fetches a list of available photo licenses for Flickr
parameters:
- in: query
name: api_key
required: true
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicGetPhotoLicensesResponse'
/rest?method=flickr.photos.search:
get:
tags:
- Public
operationId: Public_searchPhotos
description: Return a list of photos matching some criteria.
parameters:
- in: query
name: api_key
required: true
schema:
type: string
- description: >-
A free text search. Photos who's title, description or tags contain
the text will be returned. You can exclude results that match a term
by prepending it with a - character.
in: query
name: text
schema:
type: string
- description: >-
A comma-delimited list of tags. Photos with one or more of the tags
listed will be returned. You can exclude results that match a term
by prepending it with a - character.
in: query
name: tags
schema:
type: string
- description: >-
The NSID of the user who's photo to search. If this parameter isn't
passed then everybody's public photos will be searched. A value of
"me" will search against the calling user's photos for authenticated
calls.
in: query
name: user_id
schema:
type: string
- description: >-
Minimum upload date. Photos with an upload date greater than or
equal to this value will be returned. The date can be in the form of
a unix timestamp or mysql datetime.
in: query
name: min_upload_date
schema:
type: string
- description: >-
Maximum upload date. Photos with an upload date less than or equal
to this value will be returned. The date can be in the form of a
unix timestamp or mysql datetime.
in: query
name: max_upload_date
schema:
type: string
- description: >-
Minimum taken date. Photos with an taken date greater than or equal
to this value will be returned. The date can be in the form of a
mysql datetime or unix timestamp.
in: query
name: min_taken_date
schema:
type: string
- description: >-
Maximum taken date. Photos with an taken date less than or equal to
this value will be returned. The date can be in the form of a mysql
datetime or unix timestamp.
in: query
name: max_taken_date
schema:
type: string
- description: >-
The license id for photos (for possible values see the
flickr.photos.licenses.getInfo method). Multiple licenses may be
comma-separated.
in: query
name: license
schema:
type: string
- description: >
The order in which to sort returned photos. Deafults to
date-posted-desc (unless you are doing a radial geo query, in which
case the default sorting is by ascending distance from the point
specified). The possible values are:
date-posted-asc,
date-posted-desc,
date-taken-asc,
date-taken-desc,
interestingness-desc,
interestingness-asc, and
relevance.
in: query
name: sort
schema:
type: string
- description: >
Return photos only matching a certain privacy level. This only
applies when making an authenticated call to view photos you own.
Valid values are:,
1: public photos,
2: private photos visible to friends,
3: private photos visible to family,
4: private photos visible to friends & family,
5: completely private photos
in: query
name: privacy_filter
schema:
type: number
- description: >-
A comma-delimited list of 4 values defining the Bounding Box of the
area that will be searched.
in: query
name: bbox
schema:
type: string
- description: >
Recorded accuracy level of the location information. Current range
is 1-16:
World level is 1
Country is ~3
Region is ~6
City is ~11
Street is ~16
in: query
name: accuracy
schema:
type: string
- description: |
Safe search setting:
1: for safe,
2: for moderate,
3: for restricted
in: query
name: safe_search
schema:
type: number
- description: |
Content Type setting:
1: photos only.
2: screenshots only.
3: 'other' only.
4: photos and screenshots.
5: screenshots and 'other'.
6: photos and 'other'.
7: photos, screenshots, and 'other' (all).
in: query
name: content_type
schema:
type: number
- description: >
Aside from passing in a fully formed machine tag, there is a special
syntax for searching on specific properties : Find photos using the
'dc' namespace : "machine_tags" => "dc:" Find photos with a title in
the 'dc' namespace : "machine_tags" => "dc:title=" Find photos
titled "mr. camera" in the 'dc' namespace : "machine_tags" =>
"dc:title=\"mr. camera\" Find photos whose value is "mr. camera" :
"machine_tags" => "*:*=\"mr. camera\"" Find photos that have a
title, in any namespace : "machine_tags" => "*:title=" Find photos
that have a title, in any namespace, whose value is "mr. camera" :
"machine_tags" => "*:title=\"mr. camera\"" Find photos, in the 'dc'
namespace whose value is "mr. camera" : "machine_tags" =>
"dc:*=\"mr. camera\"" Multiple machine tags may be queried by
passing a comma-separated list. The number of machine tags you can
pass in a single query depends on the tag mode (AND or OR) that you
are querying with. "AND" queries are limited to (16) machine tags.
"OR" queries are limited to (8).
in: query
name: machine_tags
schema:
type: string
- description: >-
Either 'any' for an OR combination of tags, or 'all' for an AND
combination. Defaults to 'any' if not specified.
in: query
name: machine_tag_mode
schema:
type: string
- description: >-
The id of a group who's pool to search. If specified, only matching
photos posted to the group's pool will be returned.
in: query
name: group_id
schema:
type: string
- description: >-
Search your contacts. Either 'all' or 'ff' for just friends and
family. (Experimental)
in: query
name: contacts
schema:
type: string
- description: >-
A 32-bit identifier that uniquely represents spatial entities. (not
used if bbox argument is present).
in: query
name: woe_id
schema:
type: string
- description: >
A Flickr place id. (not used if bbox argument is present). Geo
queries require some sort of limiting agent in order to prevent the
database from crying. This is basically like the check against
"parameterless searches" for queries without a geo component. A tag,
for instance, is considered a limiting agent as are user defined
min_date_taken and min_date_upload parameters — If no limiting
factor is passed we return only photos added in the last 12 hours
(though we may extend the limit in the future).
in: query
name: place_id
schema:
type: string
- description: >-
Filter results by media type. Possible values are all (default),
photos or videos
in: query
name: media
schema:
type: string
- description: >
Any photo that has been geotagged, or if the value is "0" any photo
that has not been geotagged. Geo queries require some sort of
limiting agent in order to prevent the database from crying. This is
basically like the check against "parameterless searches" for
queries without a geo component. A tag, for instance, is considered
a limiting agent as are user defined min_date_taken and
min_date_upload parameters — If no limiting factor is passed we
return only photos added in the last 12 hours (though we may extend
the limit in the future).
in: query
name: has_geo
schema:
type: string
- description: >
Geo context is a numeric value representing the photo's geotagginess
beyond latitude and longitude. For example, you may wish to search
for photos that were taken "indoors" or "outdoors". The current list
of context IDs is: 0, not defined. 1, indoors. 2, outdoors. Geo
queries require some sort of limiting agent in order to prevent the
database from crying. This is basically like the check against
"parameterless searches" for queries without a geo component. A tag,
for instance, is considered a limiting agent as are user defined
min_date_taken and min_date_upload parameters — If no limiting
factor is passed we return only photos added in the last 12 hours
(though we may extend the limit in the future).
in: query
name: geo_context
schema:
type: string
- description: >
A valid latitude, in decimal format, for doing radial geo queries.
Geo queries require some sort of limiting agent in order to prevent
the database from crying. This is basically like the check against
"parameterless searches" for queries without a geo component. A tag,
for instance, is considered a limiting agent as are user defined
min_date_taken and min_date_upload parameters — If no limiting
factor is passed we return only photos added in the last 12 hours
(though we may extend the limit in the future).
in: query
name: lat
schema:
type: string
- description: >
A valid longitude, in decimal format, for doing radial geo queries.
Geo queries require some sort of limiting agent in order to prevent
the database from crying. This is basically like the check against
"parameterless searches" for queries without a geo component. A tag,
for instance, is considered a limiting agent as are user defined
min_date_taken and min_date_upload parameters — If no limiting
factor is passed we return only photos added in the last 12 hours
(though we may extend the limit in the future).
in: query
name: lon
schema:
type: string
- description: >-
A valid radius used for geo queries, greater than zero and less than
20 miles (or 32 kilometers), for use with point-based geo queries.
The default value is 5 (km).
in: query
name: radius
schema:
type: number
- description: >-
The unit of measure when doing radial geo queries. Valid options are
"mi" (miles) and "km" (kilometers). The default is "km".
in: query
name: radius_units
schema:
type: string
- description: >-
Limit the scope of the search to only photos that are part of the
Flickr Commons project. Default is false.
in: query
name: is_commons
schema:
type: boolean
- description: >-
Limit the scope of the search to only photos that are in a gallery?
Default is false, search all photos.
in: query
name: in_gallery
schema:
type: boolean
- description: >-
Limit the scope of the search to only photos that are for sale on
Getty. Default is false.
in: query
name: is_getty
schema:
type: boolean
- description: >-
Number of photos to return per page. If this argument is omitted, it
defaults to 100. The maximum allowed value is 500.
in: query
name: per_page
schema:
type: number
- description: >-
The page of results to return. If this argument is omitted, it
defaults to 1.
in: query
name: page
schema:
type: number
responses:
'200':
description: OK
content:
application/json:
schema:
$ref: '#/components/schemas/PublicSearchPhotosResponse'
/rest?method=flickr.photosets.getContext:
get:
tags:
- Public
operationId: Public_getPhotoSetContext
description: Returns next and previous photos for a photo in a set
parameters:
- in: query
name: api_key
required: true