3 <!-- markdownlint-disable MD010 MD013 MD024 -->
7 The Friendica API aims to be compatible with the [GNU Social API](http://wiki.gnusocial.de/gnusocial:api) and the [Twitter API](https://dev.twitter.com/rest/public).
9 Please refer to the linked documentation for further information.
11 ## Implemented API calls
17 API endpoints can restrict the method used to request them.
18 Using an invalid method results in HTTP error 405 "Method Not Allowed".
20 In this document, the required method is listed after the endpoint name. "*" means every method can be used.
24 Friendica supports basic http auth and OAuth 1 to authenticate the user to the api.
26 OAuth settings can be added by the user in web UI under /settings/oauth/
28 In this document, endpoints which requires auth are marked with "AUTH" after endpoint name
30 #### Unsupported parameters
32 * cursor: Not implemented in GNU Social
33 * trim_user: Not implemented in GNU Social
34 * contributor_details: Not implemented in GNU Social
35 * place_id: Not implemented in GNU Social
36 * display_coordinates: Not implemented in GNU Social
38 * include_my_retweet: Retweets in Friendica are implemented in a different way
40 #### Different behaviour
42 * screen_name: The nick name in friendica is only unique in each network but not for all networks. The users are searched in the following priority: Friendica, StatusNet/GNU Social, Diaspora, pump.io, Twitter. If no contact was found by this way, then the first contact is taken.
43 * include_entities: Default is "false". If set to "true" then the plain text is formatted so that links are having descriptions.
47 * cid: Contact id of the user (important for "contact_allow" and "contact_deny")
48 * network: network of the user
52 When an error occurs in API call, an HTTP error code is returned, with an error message
55 * 400 Bad Request: if parameters are missing or items can't be found
56 * 403 Forbidden: if the authenticated user is missing
57 * 405 Method Not Allowed: if API was called with an invalid method, eg. GET when API require POST
58 * 501 Not Implemented: if the requested API doesn't exist
59 * 500 Internal Server Error: on other error conditions
67 "error": "Specific error message",
68 "request": "API path requested",
69 "code": "HTTP error code"
77 <error>Specific error message</error>
78 <request>API path requested</request>
79 <code>HTTP error code</code>
85 ### account/rate_limit_status (*; AUTH)
89 ### account/verify_credentials (*; AUTH)
93 * skip_status: Don't show the "status" field. (Default: false)
94 * include_entities: "true" shows entities for pictures and links (Default: false)
98 ### conversation/show (*; AUTH)
100 Unofficial Twitter command. It shows all direct answers (excluding the original post) to a given id.
105 * count: Items per page (default: 20)
107 * since_id: minimum id
109 * include_entities: "true" shows entities for pictures and links (Default: false)
111 #### Unsupported parameters
115 * contributor_details
119 ### direct_messages (*; AUTH)
123 * count: Items per page (default: 20)
125 * since_id: minimum id
127 * getText: Defines the format of the status field. Can be "html" or "plain"
128 * include_entities: "true" shows entities for pictures and links (Default: false)
129 * friendica_verbose: "true" enables different error returns (default: "false")
131 #### Unsupported parameters
137 ### direct_messages/all (*; AUTH)
141 * count: Items per page (default: 20)
143 * since_id: minimum id
145 * getText: Defines the format of the status field. Can be "html" or "plain"
146 * friendica_verbose: "true" enables different error returns (default: "false")
150 ### direct_messages/conversation (*; AUTH)
152 Shows all direct messages of a conversation
156 * count: Items per page (default: 20)
158 * since_id: minimum id
160 * getText: Defines the format of the status field. Can be "html" or "plain"
161 * uri: URI of the conversation
162 * friendica_verbose: "true" enables different error returns (default: "false")
166 ### direct_messages/sent (*; AUTH)
170 * count: Items per page (default: 20)
172 * since_id: minimum id
174 * getText: Defines the format of the status field. Can be "html" or "plain"
175 * include_entities: "true" shows entities for pictures and links (Default: false)
176 * friendica_verbose: "true" enables different error returns (default: "false")
180 ### direct_messages/new (POST,PUT; AUTH)
184 * user_id: id of the user
185 * screen_name: screen name (for technical reasons, this value is not unique!)
187 * replyto: ID of the replied direct message
188 * title: Title of the direct message
192 ### direct_messages/destroy (POST,DELETE; AUTH)
196 * id: id of the message to be deleted
197 * include_entities: optional, currently not yet implemented
198 * friendica_parenturi: optional, can be used for increased safety to delete only intended messages
199 * friendica_verbose: "true" enables different error returns (default: "false")
205 * JSON return as defined for Twitter API not yet implemented
206 * on friendica_verbose=true: JSON return {"result":"ok","message":"message deleted"}
211 * on friendica_verbose=true: different JSON returns {"result":"error","message":"xyz"}
215 ### externalprofile/show (*)
219 * profileurl: profile url
223 ### favorites (*; AUTH)
227 * count: Items per page (default: 20)
229 * since_id: minimum id
231 * include_entities: "true" shows entities for pictures and links (Default: false)
233 #### Unsupported parameters
238 Favorites aren't displayed to other users, so "user_id" and "screen_name" are unsupported.
239 Set this values will result in an empty array.
243 ### favorites/create (POST,PUT; AUTH)
248 * include_entities: "true" shows entities for pictures and links (Default: false)
252 ### favorites/destroy (POST,DELETE; AUTH)
257 * include_entities: "true" shows entities for pictures and links (Default: false)
261 ### followers/ids (*; AUTH)
265 * stringify_ids: Send id numbers as text (true) or integers (false)? (default: false)
267 #### Unsupported parameters
273 Friendica doesn't allow showing the followers of other users.
277 ### friends/ids (*; AUTH)
281 * stringify_ids: Send the id numbers as text (true) or integers (false)? (default: false)
283 #### Unsupported parameters
289 Friendica doesn't allow showing the friends of other users.
297 ### lists/ownerships (*; AUTH)
301 * list_id: ID of the list
302 * count: Items per page
304 * since_id: Minimum ID
307 #### Unsupported parameters
317 ### lists/destroy (POST; AUTH)
321 * list_id: ID of the list
323 #### Unsupported parameters
331 ### lists/create (POST; AUTH)
335 * name: name of the list
337 #### Unsupported parameters
344 ### lists/update (POST; AUTH)
348 * list_id: ID of the list
349 * name: name of the list
351 #### Unsupported parameters
362 ### lists/statuses (*; AUTH)
366 * user_id: ID of the user for whom to return results.
368 #### Unsupported parameters
376 ### media/upload (POST,PUT; AUTH)
384 ### oauth/request_token (*)
390 #### Unsupported parameters
396 ### oauth/access_token (*)
402 #### Unsupported parameters
410 ### statuses/destroy (POST,DELETE; AUTH)
415 * include_entities: "true" shows entities for pictures and links (Default: false)
417 #### Unsupported parameters
423 ### statuses/followers (*; AUTH)
427 * include_entities: "true" shows entities for pictures and links (Default: false)
431 ### statuses/friends (*; AUTH)
435 * include_entities: "true" shows entities for pictures and links (Default: false)
436 * count: how many items should be shown (Default: 20)
440 ### blocks/list (*; AUTH)
444 * include_entities: "true" shows entities for pictures and links (Default: false)
445 * count: Items per page (default: 20).
448 #### Unsupported parameters
455 ### statuses/friends_timeline (*; AUTH)
459 * count: Items per page (default: 20)
461 * since_id: minimum id
463 * exclude_replies: don't show replies (default: false)
464 * conversation_id: Shows all statuses of a given conversation.
465 * include_entities: "true" shows entities for pictures and links (Default: false)
467 #### Unsupported parameters
471 * contributor_details
475 ### statuses/home_timeline (*; AUTH)
479 * count: Items per page (default: 20)
481 * since_id: minimum id
483 * exclude_replies: don't show replies (default: false)
484 * conversation_id: Shows all statuses of a given conversation.
485 * include_entities: "true" shows entities for pictures and links (Default: false)
487 #### Unsupported parameters
491 * contributor_details
495 ### statuses/mentions (*; AUTH)
499 * count: Items per page (default: 20)
501 * since_id: minimum id
503 * include_entities: "true" shows entities for pictures and links (Default: false)
505 #### Unsupported parameters
509 * contributor_details
513 ### statuses/public_timeline (*; AUTH)
517 * count: Items per page (default: 20)
519 * since_id: minimum id
521 * exclude_replies: don't show replies (default: false)
522 * conversation_id: Shows all statuses of a given conversation.
523 * include_entities: "true" shows entities for pictures and links (Default: false)
525 #### Unsupported parameters
531 ### statuses/networkpublic_timeline (*; AUTH)
535 * count: Items per page (default: 20)
537 * since_id: minimum id
539 * include_entities: "true" shows entities for pictures and links (Default: false)
543 ### statuses/replies (*; AUTH)
547 * count: Items per page (default: 20)
549 * since_id: minimum id
551 * include_entities: "true" shows entities for pictures and links (Default: false)
553 #### Unsupported parameters
557 * contributor_details
561 ### statuses/retweet (POST,PUT; AUTH)
566 * include_entities: "true" shows entities for pictures and links (Default: false)
568 #### Unsupported parameters
574 ### statuses/show (*; AUTH)
579 * conversation: if set to "1" show all messages of the conversation with the given id
580 * include_entities: "true" shows entities for pictures and links (Default: false)
582 #### Unsupported parameters
589 ### statuses/update, statuses/update_with_media
593 * title: Title of the status
594 * status: Status in text format
595 * htmlstatus: Status in HTML format
596 * in_reply_to_status_id
600 * source: Application name
606 * include_entities: "true" shows entities for pictures and links (Default: false)
607 * media_ids: (By now only a single value, no array)
609 #### Unsupported parameters
613 * display_coordinates
617 ### statuses/user_timeline (*; AUTH)
621 * user_id: id of the user
622 * screen_name: screen name (for technical reasons, this value is not unique!)
623 * count: Items per page (default: 20)
625 * since_id: minimum id
627 * exclude_replies: don't show replies (default: false)
628 * conversation_id: Shows all statuses of a given conversation.
629 * include_entities: "true" shows entities for pictures and links (Default: false)
631 #### Unsupported parameters
635 * contributor_details
639 ### Return values for statuses/* api calls
641 Returned status object is conform to GNU Social/Twitter api.
643 Friendica adds some addictional fields:
645 - owner: a user object, it's the owner of the item.
646 - private: boolean, true if the item is marked as private
647 - activities: map with activities related to the item. Every activity is a list of user objects.
649 This properties are prefixed with "friendica_" in JSON responses and namespaced under "http://friendi.ca/schema/api/1/" in XML responses
657 'friendica_owner' : {
660 'friendica_private' : true,
661 'friendica_activities': {
681 <statuses xmlns="http://api.twitter.com" xmlns:statusnet="http://status.net/schema/api/1/" xmlns:friendica="http://friendi.ca/schema/api/1/" xmlns:georss="http://www.georss.org/georss">
684 <friendica:owner><!-- user object --></friendica:owner>
685 <friendica:private>true</friendica:private>
686 <friendica:activities>
694 <friendica:attendyes/>
695 <friendica:attendno/>
696 <friendica:attendmaybe/>
697 </friendica:activities>
706 ### statusnet/config (*)
710 ### statusnet/conversation (*; AUTH)
712 It shows all direct answers (excluding the original post) to a given id.
717 * count: Items per page (default: 20)
719 * since_id: minimum id
721 * include_entities: "true" shows entities for pictures and links (Default: false)
725 ### statusnet/version (*)
727 #### Unsupported parameters
733 Friendica doesn't allow showing followers of other users.
742 * page: the page number (starting at 1) to return
743 * rpp: the number of statuses to return per page
744 * count: alias for the rpp parameter
745 * since_id: returns statuses with ids greater than the given id
746 * max_id: returns statuses with ids lower or equal to the given id
748 #### Unsupported parameters
759 ### search/tweets (*; AUTH)
761 This is an alias for `search`.
765 ### saved_searches/list (*; AUTH)
767 This call does not have any parameter.
775 * q: name of the user
777 #### Unsupported parameters
789 * user_id: id of the user
790 * screen_name: screen name (for technical reasons, this value is not unique!)
791 * include_entities: "true" shows entities for pictures and links (Default: false)
793 #### Unsupported parameters
799 Friendica doesn't allow showing friends of other users.
803 ### users/lookup (*; AUTH)
807 * user_id: list of ids to lookup
809 #### Unsupported parameters
816 ### account/update_profile_image (POST; AUTH)
820 * image: image data as base64 (Twitter has a limit of 700kb, Friendica allows more)
821 * profile_id (optional): id of the profile for which the image should be used, default is changing the default profile
823 uploads a new profile image (scales 4-6) to database, changes default or specified profile to the new photo
829 * JSON return: returns the updated user details (see account/verify_credentials)
833 * 403 FORBIDDEN: if not authenticated
834 * 400 BADREQUEST: "no media data submitted", "profile_id not available"
835 * 500 INTERNALSERVERERROR: "image size exceeds PHP config settings, file was rejected by server",
836 "image size exceeds Friendica Config setting (uploaded size: x)",
837 "unable to process image data",
838 "image upload failed"
842 ### account/update_profile (POST; AUTH)
846 * name (optional): full name of the user
847 * description (optional): a description of the user
849 #### Unsupported parameters
859 ### friendships/incoming (*; AUTH)
861 #### Unsupported parameters
866 ## Implemented API calls (not compatible with other APIs)
870 ### friendica/activity/[verb]
876 Add or remove an activity from an item.
877 'verb' can be one of:
885 To remove an activity, prepend the verb with "un", eg. "unlike" or "undislike"
886 Attend verbs disable eachother: that means that if "attendyes" was added to an item, adding "attendno" remove previous "attendyes".
887 Attend verbs should be used only with event-related items (there is no check at the moment)
905 ### friendica/group_show (*; AUTH)
907 Return all or a specified group of the user with the containing contacts as array.
911 * gid: optional, if not given, API returns all groups of the user
917 * name: name of the group
918 * gid: id of the group
919 * user: array of group members (return from api_get_user() function for each member)
923 ### friendica/group_delete (POST,DELETE; AUTH)
925 delete the specified group of contacts; API call need to include the correct gid AND name of the group to be deleted.
929 * gid: id of the group to be deleted
930 * name: name of the group to be deleted
936 * success: true if successfully deleted
937 * gid: gid of the deleted group
938 * name: name of the deleted group
939 * status: „deleted“ if successfully deleted
940 * wrong users: empty array
944 ### friendica/group_create (POST,PUT; AUTH)
946 Create the group with the posted array of contacts as members.
950 * name: name of the group to be created
954 JSON data as Array like the result of "users/group_show":
964 * success: true if successfully created or reactivated
965 * gid: gid of the created group
966 * name: name of the created group
967 * status: „missing user“ | „reactivated“ | „ok“
968 * wrong users: array of users, which were not available in the contact table
972 ### friendica/group_update (POST)
974 Update the group with the posted array of contacts as members (post all members of the group to the call; function will remove members not posted).
978 * gid: id of the group to be changed
979 * name: name of the group to be changed
983 JSON data as array like the result of „users/group_show“:
993 * success: true if successfully updated
994 * gid: gid of the changed group
995 * name: name of the changed group
996 * status: „missing user“ | „ok“
997 * wrong users: array of users, which were not available in the contact table
1001 ### friendica/notifications (GET)
1003 Return last 50 notification for current user, ordered by date with unseen item on top
1013 * id: id of the note
1014 * type: type of notification as int (see NOTIFY_* constants in boot.php)
1015 * name: full name of the contact subject of the note
1016 * url: contact's profile url
1017 * photo: contact's profile photo
1018 * date: datetime string of the note
1019 * timestamp: timestamp of the node
1020 * date_rel: relative date of the note (eg. "1 hour ago")
1021 * msg: note message in bbcode
1022 * msg_html: note message in html
1023 * msg_plain: note message in plain text
1024 * link: link to note
1025 * seen: seen state: 0 or 1
1029 ### friendica/notifications/seen (POST)
1031 Set note as seen, returns item object if possible
1035 id: id of the note to set seen
1039 If the note is linked to an item, the item is returned, just like one of the "statuses/*_timeline" api.
1041 If the note is not linked to an item, a success status is returned:
1043 * `success` (json) | `<status>success</status>` (xml)
1047 ### friendica/photo (*; AUTH)
1051 * photo_id: Resource id of a photo.
1052 * scale: (optional) scale value of the photo
1054 Returns data of a picture with the given resource.
1055 If 'scale' isn't provided, returned data include full url to each scale of the photo.
1056 If 'scale' is set, returned data include image data base64 encoded.
1058 possibile scale value are:
1060 * 0: original or max size by server settings
1061 * 1: image with or height at <= 640
1062 * 2: image with or height at <= 320
1063 * 3: thumbnail 160x160
1064 * 4: Profile image at 300x300
1065 * 5: Profile image at 80x80
1066 * 6: Profile image at 48x48
1068 An image used as profile image has only scale 4-6, other images only 0-3
1077 "created": "date(YYYY-MM-DD HH:MM:SS)",
1078 "edited": "date(YYYY-MM-DD HH:MM:SS)",
1079 "title": "photo title",
1080 "desc": "photo description",
1081 "album": "album name",
1082 "filename": "original file name",
1083 "type": "mime type",
1086 "profile": "1 if is profile photo",
1088 "<scale>": "url to image"
1091 // if 'scale' is set
1092 "datasize": "size in byte",
1093 "data": "base64 encoded image data"
1102 <created>date(YYYY-MM-DD HH:MM:SS)</created>
1103 <edited>date(YYYY-MM-DD HH:MM:SS)</edited>
1104 <title>photo title</title>
1105 <desc>photo description</desc>
1106 <album>album name</album>
1107 <filename>original file name</filename>
1108 <type>mime type</type>
1109 <height>number</height>
1110 <width>number</width>
1111 <profile>1 if is profile photo</profile>
1112 <links type="array">
1113 <link type="mime type" scale="scale number" href="image url"/>
1121 ### friendica/photos/list (*; AUTH)
1123 Returns a list of all photo resources of the logged in user.
1133 album: "album name",
1134 filename: "original file name",
1135 type: "image mime type",
1136 thumb: "url to thumb sized image"
1145 <photos type="array">
1146 <photo id="resource_id"
1148 filename="original file name"
1149 type="image mime type">
1150 "url to thumb sized image"
1158 ### friendica/photoalbum/delete (POST,DELETE; AUTH)
1162 * album: name of the album to be deleted
1164 deletes all images with the specified album name, is not reversible -> ensure that client is asking user for being sure to do this
1170 * JSON return {"result":"deleted","message":"album 'xyz' with all containing photos has been deleted."}
1174 * 403 FORBIDDEN: if not authenticated
1175 * 400 BADREQUEST: "no albumname specified", "album not available"
1176 * 500 INTERNALSERVERERROR: "problem with deleting item occured", "unknown error - deleting from database failed"
1180 ### friendica/photoalbum/update (POST,PUT; AUTH)
1184 * album: name of the album to be updated
1185 * album_new: new name of the album
1187 changes the album name to album_new for all photos in album
1193 * JSON return {"result":"updated","message":"album 'abc' with all containing photos has been renamed to 'xyz'."}
1197 * 403 FORBIDDEN: if not authenticated
1198 * 400 BADREQUEST: "no albumname specified", "no new albumname specified", "album not available"
1199 * 500 INTERNALSERVERERROR: "unknown error - updating in database failed"
1203 ### friendica/photo/create (POST; AUTH)
1205 ### friendica/photo/update (POST; AUTH)
1209 * photo_id (optional): if specified the photo with this id will be updated
1210 * media (optional): image data as base64, only optional if photo_id is specified (new upload must have media)
1211 * desc (optional): description for the photo, updated when photo_id is specified
1212 * album: name of the album to be deleted (always necessary)
1213 * album_new (optional): can be used to change the album of a single photo if photo_id is specified
1214 * allow_cid/allow_gid/deny_cid/deny_gid (optional): on create: empty string or omitting = public photo, specify in format '```<x><y><z>```' for private photo;
1215 on update: keys need to be present with empty values for changing a private photo to public
1217 both calls point to one function for creating AND updating photos.
1218 Saves data for the scales 0-2 to database (see above for scale description).
1219 Call adds non-visible entries to items table to enable authenticated contacts to comment/like the photo.
1220 Client should pay attention to the fact that updated access rights are not transferred to the contacts. i.e. public photos remain publicly visible if they have been commented/liked before setting visibility back to a limited group.
1221 Currently it is best to inform user that updating rights is not the right way to do this, and offer a solution to add photo as a new photo with the new rights instead.
1227 * new photo uploaded: JSON return with photo data (see friendica/photo)
1228 * photo updated - changed photo data: JSON return with photo data (see friendica/photo)
1229 * photo updated - changed info: JSON return {"result":"updated","message":"Image id 'xyz' has been updated."}
1230 * photo updated - nothing changed: JSON return {"result":"cancelled","message":"Nothing to update for image id 'xyz'."}
1234 * 403 FORBIDDEN: if not authenticated
1235 * 400 BADREQUEST: "no albumname specified", "no media data submitted", "photo not available", "acl data invalid"
1236 * 500 INTERNALSERVERERROR: "image size exceeds PHP config settings, file was rejected by server",
1237 "image size exceeds Friendica Config setting (uploaded size: x)",
1238 "unable to process image data",
1239 "image upload failed",
1240 "unknown error - uploading photo failed, see Friendica log for more information",
1241 "unknown error - update photo entry in database failed",
1242 "unknown error - this error on uploading or updating a photo should never happen"
1246 ### friendica/photo/delete (DELETE; AUTH)
1250 * photo_id: id of the photo to be deleted
1252 deletes a single image with the specified id, is not reversible -> ensure that client is asking user for being sure to do this
1253 Sets item table entries for this photo to deleted = 1
1259 * JSON return {"result":"deleted","message":"photo with id 'xyz' has been deleted from server."}
1263 * 403 FORBIDDEN: if not authenticated
1264 * 400 BADREQUEST: "no photo_id specified", "photo not available"
1265 * 500 INTERNALSERVERERROR: "unknown error on deleting photo", "problem with deleting items occurred"
1269 ### friendica/direct_messages_setseen (GET; AUTH)
1273 * id: id of the message to be updated as seen
1279 * JSON return {"result":"ok","message":"message set to seen"}
1283 * different JSON returns {"result":"error","message":"xyz"}
1287 ### friendica/direct_messages_search (GET; AUTH)
1291 * searchstring: string for which the API call should search as '%searchstring%' in field 'body' of all messages of the authenticated user (caption ignored)
1295 Returns only tested with JSON, XML might work as well.
1299 * JSON return {"success":"true","search_results": array of found messages}
1300 * JSOn return {"success":"false","search_results":"nothing found"}
1304 * different JSON returns {"result":"error","message":"searchstring not specified"}
1308 ### friendica/profile/show (GET; AUTH)
1310 show data of all profiles or a single profile of the authenticated user
1314 * profile_id: id of the profile to be returned (optional, if omitted all profiles are returned by default)
1318 On success: Array of:
1320 * multi_profiles: true if user has activated multi_profiles
1321 * global_dir: URL of the global directory set in server settings
1322 * friendica_owner: user data of the authenticated user
1323 * profiles: array of the profile data
1326 HTTP 403 Forbidden: when no authentication was provided
1327 HTTP 400 Bad Request: if given profile_id is not in the database or is not assigned to the authenticated user
1329 General description of profile data in API returns:
1333 * is_default: true if this is the public profile
1334 * hide_friends: true if friends are hidden
1337 * publish: true if published on the server's local directory
1338 * net_publish: true if published to global_dir
1339 * description ... homepage: different data fields from 'profile' table in database
1340 * users: array with the users allowed to view this profile (empty if is_default=true)
1344 ## Not Implemented API calls
1346 The following API calls are implemented in GNU Social but not in Friendica: (incomplete)
1348 * statuses/retweets_of_me
1349 * friendships/create
1350 * friendships/destroy
1351 * friendships/exists
1353 * account/update_profile_background_image
1357 The following API calls from the Twitter API are not implemented in either Friendica or GNU Social:
1359 * statuses/mentions_timeline
1360 * statuses/retweets/:id
1362 * statuses/retweeters/ids
1364 * direct_messages/show
1365 * friendships/no_retweets/ids
1366 * friendships/outgoing
1367 * friendships/update
1369 * friendships/lookup
1371 * account/update_delivery_device
1375 * account/remove_profile_banner
1376 * account/update_profile_banner
1377 * users/profile_banner
1378 * mutes/users/create
1379 * mutes/users/destroy
1382 * users/suggestions/:slug
1384 * users/suggestions/:slug/members
1387 * lists/members/destroy
1390 * lists/subscribers/create
1391 * lists/subscribers/show
1392 * lists/subscribers/destroy
1393 * lists/members/create_all
1394 * lists/members/show
1396 * lists/members/create
1398 * lists/subscriptions
1399 * lists/members/destroy_all
1400 * saved_searches/show/:id
1401 * saved_searches/create
1402 * saved_searches/destroy/:id
1404 * geo/reverse_geocode
1409 * help/configuration
1425 /usr/bin/curl -u USER:PASS https://YOUR.FRIENDICA.TLD/api/statuses/update.xml -d source="some source id" -d status="the status you want to post"
1430 The [RSStoFriendika](https://github.com/pafcu/RSStoFriendika) code can be used as an example of how to use the API with python.
1431 The lines for posting are located at [line 21](https://github.com/pafcu/RSStoFriendika/blob/master/RSStoFriendika.py#L21) and following.
1433 def tweet(server, message, group_allow=None):
1434 url = server + '/api/statuses/update'
1435 urllib2.urlopen(url, urllib.urlencode({'status': message,'group_allow[]':group_allow}, doseq=True))
1437 There is also a [module for python 3](https://bitbucket.org/tobiasd/python-friendica) for using the API.