3 Authentication is required and the user must be an admin.
7 * `[:auth, :enforce_oauth_admin_scope_usage]` — OAuth admin scope requirement toggle.
8 If `true`, admin actions explicitly demand admin OAuth scope(s) presence in OAuth token (client app must support admin scopes).
9 If `false` and token doesn't have admin scope(s), `is_admin` user flag grants access to admin-specific actions.
10 Note that client app needs to explicitly support admin scopes and request them when obtaining auth token.
12 ## `GET /api/pleroma/admin/users`
17 - *optional* `query`: **string** search term (e.g. nickname, domain, nickname@domain)
18 - *optional* `filters`: **string** comma-separated string of filters:
19 - `local`: only local users
20 - `external`: only external users
21 - `active`: only active users
22 - `deactivated`: only deactivated users
23 - `is_admin`: users with admin role
24 - `is_moderator`: users with moderator role
25 - *optional* `page`: **integer** page number
26 - *optional* `page_size`: **integer** number of users per page (default is `50`)
27 - *optional* `tags`: **[string]** tags list
28 - *optional* `name`: **string** user display name
29 - *optional* `email`: **string** user email
30 - Example: `https://mypleroma.org/api/pleroma/admin/users?query=john&filters=local,active&page=1&page_size=10&tags[]=some_tag&tags[]=another_tag&name=display_name&email=email@example.com`
49 "display_name": string
56 ## DEPRECATED `DELETE /api/pleroma/admin/users`
62 - Response: User’s nickname
64 ## `DELETE /api/pleroma/admin/users`
70 - Response: Array of user nicknames
83 - Response: User’s nickname
85 ## `POST /api/pleroma/admin/users/follow`
87 ### Make a user follow another user
90 - `follower`: The nickname of the follower
91 - `followed`: The nickname of the followed
95 ## `POST /api/pleroma/admin/users/unfollow`
97 ### Make a user unfollow another user
100 - `follower`: The nickname of the follower
101 - `followed`: The nickname of the followed
105 ## `PATCH /api/pleroma/admin/users/:nickname/toggle_activation`
107 ### Toggle user activation
111 - Response: User’s object
121 ## `PUT /api/pleroma/admin/users/tag`
123 ### Tag a list of users
126 - `nicknames` (array)
129 ## `DELETE /api/pleroma/admin/users/tag`
131 ### Untag a list of users
134 - `nicknames` (array)
137 ## `GET /api/pleroma/admin/users/:nickname/permission_group`
139 ### Get user user permission groups membership
146 "is_moderator": bool,
151 ## `GET /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
153 Note: Available `:permission_group` is currently moderator and admin. 404 is returned when the permission group doesn’t exist.
155 ### Get user user permission groups membership per permission group
162 "is_moderator": bool,
167 ## DEPRECATED `POST /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
169 ### Add user to permission group
173 - On failure: `{"error": "…"}`
174 - On success: JSON of the user
176 ## `POST /api/pleroma/admin/users/permission_group/:permission_group`
178 ### Add users to permission group
181 - `nicknames`: nicknames array
183 - On failure: `{"error": "…"}`
184 - On success: JSON of the user
186 ## DEPRECATED `DELETE /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
188 ## `DELETE /api/pleroma/admin/users/:nickname/permission_group/:permission_group`
190 ### Remove user from permission group
194 - On failure: `{"error": "…"}`
195 - On success: JSON of the user
196 - Note: An admin cannot revoke their own admin status.
198 ## `DELETE /api/pleroma/admin/users/permission_group/:permission_group`
200 ### Remove users from permission group
203 - `nicknames`: nicknames array
205 - On failure: `{"error": "…"}`
206 - On success: JSON of the user
207 - Note: An admin cannot revoke their own admin status.
209 ## `PATCH /api/pleroma/admin/users/activate`
214 - `nicknames`: nicknames array
227 ## `PATCH /api/pleroma/admin/users/deactivate`
232 - `nicknames`: nicknames array
245 ## `GET /api/pleroma/admin/users/:nickname_or_id`
247 ### Retrive the details of a user
252 - On failure: `Not found`
253 - On success: JSON of the user
255 ## `GET /api/pleroma/admin/users/:nickname_or_id/statuses`
257 ### Retrive user's latest statuses
261 - *optional* `page_size`: number of statuses to return (default is `20`)
262 - *optional* `godmode`: `true`/`false` – allows to see private statuses
263 - *optional* `with_reblogs`: `true`/`false` – allows to see reblogs (default is false)
265 - On failure: `Not found`
266 - On success: JSON array of user's latest statuses
268 ## `GET /api/pleroma/admin/instances/:instance/statuses`
270 ### Retrive instance's latest statuses
273 - `instance`: instance name
274 - *optional* `page_size`: number of statuses to return (default is `20`)
275 - *optional* `godmode`: `true`/`false` – allows to see private statuses
276 - *optional* `with_reblogs`: `true`/`false` – allows to see reblogs (default is false)
278 - On failure: `Not found`
279 - On success: JSON array of instance's latest statuses
281 ## `GET /api/pleroma/admin/statuses`
283 ### Retrives all latest statuses
286 - *optional* `page_size`: number of statuses to return (default is `20`)
287 - *optional* `local_only`: excludes remote statuses
288 - *optional* `godmode`: `true`/`false` – allows to see private statuses
289 - *optional* `with_reblogs`: `true`/`false` – allows to see reblogs (default is false)
291 - On failure: `Not found`
292 - On success: JSON array of user's latest statuses
294 ## `POST /api/pleroma/admin/relay`
301 - On success: URL of the followed relay
303 ## `DELETE /api/pleroma/admin/relay`
310 - On success: URL of the unfollowed relay
312 ## `GET /api/pleroma/admin/relay`
318 - On success: JSON array of relays
320 ## `POST /api/pleroma/admin/users/invite_token`
322 ### Create an account registration invite token
325 - *optional* `max_use` (integer)
326 - *optional* `expires_at` (date string e.g. "2019-04-07")
337 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
341 ## `GET /api/pleroma/admin/users/invites`
343 ### Get a list of generated invites
359 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
366 ## `POST /api/pleroma/admin/users/revoke_invite`
368 ### Revoke invite by token
382 "invite_type": string (possible values: `one_time`, `reusable`, `date_limited`, `reusable_date_limited`)
387 ## `POST /api/pleroma/admin/users/email_invite`
389 ### Sends registration invite via email
396 - On success: `204`, empty response
398 - 400 Bad Request, JSON:
403 "error": "Appropriate error message here"
408 ## `GET /api/pleroma/admin/users/:nickname/password_reset`
410 ### Get a password reset token for a given nickname
418 "token": "base64 reset token",
419 "link": "https://pleroma.social/api/pleroma/password_reset/url-encoded-base64-token"
423 ## `PATCH /api/pleroma/admin/users/force_password_reset`
425 ### Force passord reset for a user with a given nickname
429 - Response: none (code `204`)
431 ## PUT `/api/pleroma/admin/users/disable_mfa`
433 ### Disable mfa for user's account.
437 - Response: User’s nickname
439 ## `GET /api/pleroma/admin/users/:nickname/credentials`
441 ### Get the user's email, password, display and settings-related fields
450 "actor_type": "Person",
451 "allow_following_move": true,
452 "avatar": "https://pleroma.social/media/7e8e7508fd545ef580549b6881d80ec0ff2c81ed9ad37b9bdbbdf0e0d030159d.jpg",
453 "background": "https://pleroma.social/media/4de34c0bd10970d02cbdef8972bef0ebbf55f43cadc449554d4396156162fe9a.jpg",
454 "banner": "https://pleroma.social/media/8d92ba2bd244b613520abf557dd448adcd30f5587022813ee9dd068945986946.jpg",
456 "default_scope": "public",
457 "discoverable": false,
458 "email": "user@example.com",
462 "value": "<a href=\"https://example.com\" rel=\"ugc\">https://example.com</a>"
465 "hide_favorites": false,
466 "hide_followers": false,
467 "hide_followers_count": false,
468 "hide_follows": false,
469 "hide_follows_count": false,
470 "id": "9oouHaEEUR54hls968",
473 "no_rich_text": true,
474 "pleroma_settings_store": {},
479 "value": "https://example.com"
483 "skip_thread_containment": false
487 ## `PATCH /api/pleroma/admin/users/:nickname/credentials`
489 ### Change the user's email, password, display and settings-related fields
503 * `hide_followers_count`
504 * `hide_follows_count`
506 * `allow_following_move`
509 * `skip_thread_containment`
519 {"status": "success"}
526 {"actor_type": "is invalid"},
527 {"email": "has invalid format"},
535 {"error": "Not found"}
538 ## `GET /api/pleroma/admin/reports`
540 ### Get a list of reports
543 - *optional* `state`: **string** the state of reports. Valid values are `open`, `closed` and `resolved`
544 - *optional* `limit`: **integer** the number of records to retrieve
545 - *optional* `page`: **integer** page number
546 - *optional* `page_size`: **integer** number of log entries per page (default is `50`)
548 - On failure: 403 Forbidden error `{"error": "error_msg"}` when requested by anonymous or non-admin
549 - On success: JSON, returns a list of reports, where:
550 - `account`: the user who has been reported
551 - `actor`: the user who has sent the report
552 - `statuses`: list of statuses that have been included to the report
561 "avatar": "https://pleroma.example.org/images/avi.png",
562 "avatar_static": "https://pleroma.example.org/images/avi.png",
564 "created_at": "2019-04-23T17:32:04.000Z",
565 "display_name": "User",
568 "followers_count": 1,
569 "following_count": 1,
570 "header": "https://pleroma.example.org/images/banner.png",
571 "header_static": "https://pleroma.example.org/images/banner.png",
572 "id": "9i6dAJqSGSKMzLG2Lo",
576 "confirmation_pending": false,
577 "hide_favorites": true,
578 "hide_followers": false,
579 "hide_follows": false,
581 "is_moderator": false,
590 "tags": ["force_unlisted"],
592 "url": "https://pleroma.example.org/users/user",
597 "avatar": "https://pleroma.example.org/images/avi.png",
598 "avatar_static": "https://pleroma.example.org/images/avi.png",
600 "created_at": "2019-03-28T17:36:03.000Z",
601 "display_name": "Roger Braun",
604 "followers_count": 1,
605 "following_count": 1,
606 "header": "https://pleroma.example.org/images/banner.png",
607 "header_static": "https://pleroma.example.org/images/banner.png",
608 "id": "9hEkA5JsvAdlSrocam",
612 "confirmation_pending": false,
613 "hide_favorites": false,
614 "hide_followers": false,
615 "hide_follows": false,
617 "is_moderator": false,
626 "tags": ["force_unlisted"],
628 "url": "https://pleroma.example.org/users/lain",
631 "content": "Please delete it",
632 "created_at": "2019-04-29T19:48:15.000Z",
633 "id": "9iJGOv1j8hxuw19bcm",
644 "content": "<span class=\"h-card\"><a data-user=\"9hEkA5JsvAdlSrocam\" class=\"u-url mention\" href=\"https://pleroma.example.org/users/lain\">@<span>lain</span></a></span> click on my link <a href=\"https://www.google.com/\">https://www.google.com/</a>",
645 "created_at": "2019-04-23T19:15:47.000Z",
648 "favourites_count": 0,
649 "id": "9i6mQ9uVrrOmOime8m",
650 "in_reply_to_account_id": null,
651 "in_reply_to_id": null,
653 "media_attachments": [],
657 "id": "9hEkA5JsvAdlSrocam",
658 "url": "https://pleroma.example.org/users/lain",
663 "id": "9i6dAJqSGSKMzLG2Lo",
664 "url": "https://pleroma.example.org/users/user",
672 "text/plain": "@lain click on my link https://www.google.com/"
674 "conversation_id": 28,
675 "in_reply_to_account_acct": null,
688 "uri": "https://pleroma.example.org/objects/8717b90f-8e09-4b58-97b0-e3305472b396",
689 "url": "https://pleroma.example.org/notice/9i6mQ9uVrrOmOime8m",
690 "visibility": "direct"
698 ## `GET /api/pleroma/admin/grouped_reports`
700 ### Get a list of reports, grouped by status
703 - On success: JSON, returns a list of reports, where:
704 - `date`: date of the latest report
705 - `account`: the user who has been reported (see `/api/pleroma/admin/reports` for reference)
706 - `status`: reported status (see `/api/pleroma/admin/reports` for reference)
707 - `actors`: users who had reported this status (see `/api/pleroma/admin/reports` for reference)
708 - `reports`: reports (see `/api/pleroma/admin/reports` for reference)
713 "date": "2019-10-07T12:31:39.615149Z",
716 "actors": [{ ... }, { ... }],
722 ## `GET /api/pleroma/admin/reports/:id`
724 ### Get an individual report
730 - 403 Forbidden `{"error": "error_msg"}`
731 - 404 Not Found `"Not found"`
732 - On success: JSON, Report object (see above)
734 ## `PATCH /api/pleroma/admin/reports`
736 ### Change the state of one or multiple reports
743 `id`, // required, report id
744 `state` // required, the new state. Valid values are `open`, `closed` and `resolved`
752 - 400 Bad Request, JSON:
758 `error` // error message
763 - On success: `204`, empty response
765 ## `POST /api/pleroma/admin/reports/:id/notes`
767 ### Create report note
770 - `id`: required, report id
771 - `content`: required, the message
774 - 400 Bad Request `"Invalid parameters"` when `status` is missing
775 - On success: `204`, empty response
777 ## `DELETE /api/pleroma/admin/reports/:report_id/notes/:id`
779 ### Delete report note
782 - `report_id`: required, report id
783 - `id`: required, note id
786 - 400 Bad Request `"Invalid parameters"` when `status` is missing
787 - On success: `204`, empty response
789 ## `GET /api/pleroma/admin/statuses/:id`
791 ### Show status by id
794 - `id`: required, status id
797 - 404 Not Found `"Not Found"`
798 - On success: JSON, Mastodon Status entity
800 ## `PUT /api/pleroma/admin/statuses/:id`
802 ### Change the scope of an individual reported status
806 - `sensitive`: optional, valid values are `true` or `false`
807 - `visibility`: optional, valid values are `public`, `private` and `unlisted`
810 - 400 Bad Request `"Unsupported visibility"`
811 - 403 Forbidden `{"error": "error_msg"}`
812 - 404 Not Found `"Not found"`
813 - On success: JSON, Mastodon Status entity
815 ## `DELETE /api/pleroma/admin/statuses/:id`
817 ### Delete an individual reported status
823 - 403 Forbidden `{"error": "error_msg"}`
824 - 404 Not Found `"Not found"`
825 - On success: 200 OK `{}`
827 ## `GET /api/pleroma/admin/restart`
829 ### Restarts pleroma application
831 **Only works when configuration from database is enabled.**
836 - 400 Bad Request `"To use this endpoint you need to enable configuration from database."`
842 ## `GET /api/pleroma/admin/need_reboot`
844 ### Returns the flag whether the pleroma should be restarted
848 - `need_reboot` - boolean
855 ## `GET /api/pleroma/admin/config`
857 ### Get list of merged default settings with saved in database.
859 *If `need_reboot` is `true`, instance must be restarted, so reboot time settings can take effect.*
861 **Only works when configuration from database is enabled.**
864 - `only_db`: true (*optional*, get only saved in database settings)
867 - 400 Bad Request `"To use this endpoint you need to enable configuration from database."`
874 "key": "Pleroma.Upload",
882 ## `POST /api/pleroma/admin/config`
884 ### Update config settings
886 *If `need_reboot` is `true`, instance must be restarted, so reboot time settings can take effect.*
888 **Only works when configuration from database is enabled.**
890 Some modifications are necessary to save the config settings correctly:
892 - strings which start with `Pleroma.`, `Phoenix.`, `Tesla.` or strings like `Oban`, `Ueberauth` will be converted to modules;
894 "Pleroma.Upload" -> Pleroma.Upload
897 - strings starting with `:` will be converted to atoms;
899 ":pleroma" -> :pleroma
901 - objects with `tuple` key and array value will be converted to tuples;
903 {"tuple": ["string", "Pleroma.Upload", []]} -> {"string", Pleroma.Upload, []}
905 - arrays with *tuple objects* will be converted to keywords;
907 [{"tuple": [":key1", "value"]}, {"tuple": [":key2", "value"]}] -> [key1: "value", key2: "value"]
910 Most of the settings will be applied in `runtime`, this means that you don't need to restart the instance. But some settings are applied in `compile time` and require a reboot of the instance, such as:
911 - all settings inside these keys:
913 - `:connections_pool`
916 - partially settings inside these keys:
917 - `:seconds_valid` in `Pleroma.Captcha`
918 - `:proxy_remote` in `Pleroma.Upload`
919 - `:upload_limit` in `:instance`
922 - `configs` - array of config objects
923 - config object params:
924 - `group` - string (**required**)
925 - `key` - string (**required**)
926 - `value` - string, [], {} or {"tuple": []} (**required**)
927 - `delete` - true (*optional*, if setting must be deleted)
928 - `subkeys` - array of strings (*optional*, only works when `delete=true` parameter is passed, otherwise will be ignored)
930 *When a value have several nested settings, you can delete only some nested settings by passing a parameter `subkeys`, without deleting all settings by key.*
932 [subkey: val1, subkey2: val2, subkey3: val3] \\ initial value
933 {"group": ":pleroma", "key": "some_key", "delete": true, "subkeys": [":subkey", ":subkey3"]} \\ passing json for deletion
934 [subkey2: val2] \\ value after deletion
937 *Most of the settings can be partially updated through merge old values with new values, except settings value of which is list or is not keyword.*
939 Example of setting without keyword in value:
941 config :tesla, :adapter, Tesla.Adapter.Hackney
944 List of settings which support only full update by key:
947 {:pleroma, :ecto_repos},
950 {:cors_plug, [:max_age, :methods, :expose, :headers]},
951 {:auto_linker, :opts},
952 {:swarm, :node_blacklist},
957 List of settings which support only full update by subkey:
959 @full_subkey_update [
960 {:pleroma, :assets, :mascots},
961 {:pleroma, :emoji, :groups},
962 {:pleroma, :workers, :retries},
963 {:pleroma, :mrf_subchain, :match_actor},
964 {:pleroma, :mrf_keyword, :replace}
968 *Settings without explicit key must be sended in separate config object params.*
978 {"group": ":quack", "key": ":level", "value": ":debug"},
979 {"group": ":quack", "key": ":meta", "value": [":all"]},
991 "key": "Pleroma.Upload",
993 {"tuple": [":uploader", "Pleroma.Uploaders.Local"]},
994 {"tuple": [":filters", ["Pleroma.Upload.Filter.Dedupe"]]},
995 {"tuple": [":link_name", true]},
996 {"tuple": [":proxy_remote", false]},
997 {"tuple": [":proxy_opts", [
998 {"tuple": [":redirect_on_failure", false]},
999 {"tuple": [":max_body_length", 1048576]},
1000 {"tuple": [":http", [
1001 {"tuple": [":follow_redirect", true]},
1002 {"tuple": [":pool", ":upload"]},
1006 {"tuple": [":dispatch", {
1007 "tuple": ["/api/v1/streaming", "Pleroma.Web.MastodonAPI.WebsocketHandler", []]
1017 - 400 Bad Request `"To use this endpoint you need to enable configuration from database."`
1022 "group": ":pleroma",
1023 "key": "Pleroma.Upload",
1031 ## ` GET /api/pleroma/admin/config/descriptions`
1033 ### Get JSON with config descriptions.
1034 Loads json generated from `config/descriptions.exs`.
1041 "group": ":pleroma", // string
1042 "key": "ModuleName", // string
1043 "type": "group", // string or list with possible values,
1044 "description": "Upload general settings", // string
1047 "key": ":uploader", // string or module name `Pleroma.Upload`
1049 "description": "Module which will be used for uploads",
1050 "suggestions": ["module1", "module2"]
1054 "type": ["list", "module"],
1055 "description": "List of filter modules for uploads",
1057 "module1", "module2", "module3"
1064 ## `GET /api/pleroma/admin/moderation_log`
1066 ### Get moderation log
1069 - *optional* `page`: **integer** page number
1070 - *optional* `page_size`: **integer** number of log entries per page (default is `50`)
1071 - *optional* `start_date`: **datetime (ISO 8601)** filter logs by creation date, start from `start_date`. Accepts datetime in ISO 8601 format (YYYY-MM-DDThh:mm:ss), e.g. `2005-08-09T18:31:42`
1072 - *optional* `end_date`: **datetime (ISO 8601)** filter logs by creation date, end by from `end_date`. Accepts datetime in ISO 8601 format (YYYY-MM-DDThh:mm:ss), e.g. 2005-08-09T18:31:42
1073 - *optional* `user_id`: **integer** filter logs by actor's id
1074 - *optional* `search`: **string** search logs by the log message
1085 "action": "relay_follow"
1087 "time": 1502812026, // timestamp
1088 "message": "[2017-08-15 15:47:06] @nick0 followed relay: https://example.org/relay" // log message
1093 ## `POST /api/pleroma/admin/reload_emoji`
1095 ### Reload the instance's custom emoji
1097 - Authentication: required
1099 - Response: JSON, "ok" and 200 status
1101 ## `PATCH /api/pleroma/admin/users/confirm_email`
1103 ### Confirm users' emails
1107 - Response: Array of user nicknames
1109 ## `PATCH /api/pleroma/admin/users/resend_confirmation_email`
1111 ### Resend confirmation email
1115 - Response: Array of user nicknames
1117 ## `GET /api/pleroma/admin/stats`
1122 - *optional* `instance`: **string** instance hostname (without protocol) to get stats for
1123 - Example: `https://mypleroma.org/api/pleroma/admin/stats?instance=lain.com`
1129 "status_visibility": {
1138 ## `GET /api/pleroma/admin/oauth_app`
1144 - *optional* `client_id`
1146 - *optional* `page_size`
1147 - *optional* `trusted`
1157 "client_id": "yHoDSiWYp5mPV6AfsaVOWjdOyt5PhWRiafi6MRd1lSk",
1158 "client_secret": "nLmis486Vqrv2o65eM9mLQx_m_4gH-Q6PcDpGIMl6FY",
1159 "redirect_uri": "https://example.com/oauth-callback",
1160 "website": "https://example.com",
1170 ## `POST /api/pleroma/admin/oauth_app`
1172 ### Create OAuth App
1178 - *optional* `website`
1179 - *optional* `trusted`
1187 "client_id": "yHoDSiWYp5mPV6AfsaVOWjdOyt5PhWRiafi6MRd1lSk",
1188 "client_secret": "nLmis486Vqrv2o65eM9mLQx_m_4gH-Q6PcDpGIMl6FY",
1189 "redirect_uri": "https://example.com/oauth-callback",
1190 "website": "https://example.com",
1198 "redirect_uris": "can't be blank",
1199 "name": "can't be blank"
1203 ## `PATCH /api/pleroma/admin/oauth_app/:id`
1205 ### Update OAuth App
1209 - *optional* `redirect_uris`
1210 - *optional* `scopes`
1211 - *optional* `website`
1212 - *optional* `trusted`
1220 "client_id": "yHoDSiWYp5mPV6AfsaVOWjdOyt5PhWRiafi6MRd1lSk",
1221 "client_secret": "nLmis486Vqrv2o65eM9mLQx_m_4gH-Q6PcDpGIMl6FY",
1222 "redirect_uri": "https://example.com/oauth-callback",
1223 "website": "https://example.com",
1228 ## `DELETE /api/pleroma/admin/oauth_app/:id`
1230 ### Delete OAuth App
1235 - On success: `204`, empty response
1237 - 400 Bad Request `"Invalid parameters"` when `status` is missing
1239 ## `GET /api/pleroma/admin/media_proxy_caches`
1241 ### Get a list of all banned MediaProxy URLs in Cachex
1243 - Authentication: required
1245 - *optional* `page`: **integer** page number
1246 - *optional* `page_size`: **integer** number of log entries per page (default is `50`)
1253 "http://example.com/media/a688346.jpg",
1254 "http://example.com/media/fb1f4d.jpg"
1260 ## `POST /api/pleroma/admin/media_proxy_caches/delete`
1262 ### Remove a banned MediaProxy URL from Cachex
1264 - Authentication: required
1273 "http://example.com/media/a688346.jpg",
1274 "http://example.com/media/fb1f4d.jpg"
1280 ## `POST /api/pleroma/admin/media_proxy_caches/purge`
1282 ### Purge a MediaProxy URL
1284 - Authentication: required
1294 "http://example.com/media/a688346.jpg",
1295 "http://example.com/media/fb1f4d.jpg"