Skip to content

Instantly share code, notes, and snippets.

@jlyon
Created December 2, 2015 01:20
Show Gist options
  • Save jlyon/553ad32fc80770bcdc74 to your computer and use it in GitHub Desktop.
Save jlyon/553ad32fc80770bcdc74 to your computer and use it in GitHub Desktop.
WP Calypso API endpoints used
# Auth
https://public-api.wordpress.com/rest/v1.1/me?http_envelope=1&meta=flags
https://public-api.wordpress.com/rest/v1.1/me/settings?http_envelope=1

# User - login
https://public-api.wordpress.com/rest/v1.1/me/sites?http_envelope=1&site_visibility=all
https://public-api.wordpress.com/rest/v1.1/products?http_envelope=1&locale=en
https://public-api.wordpress.com/rest/v1.1/sites/103415197/users?http_envelope=1&number=50&offset=0&siteId=103415197&order=ASC&order_by=display_name

# Users
https://public-api.wordpress.com/rest/v1.1/sites/103415197/users?http_envelope=1&number=100&offset=0&siteId=103415197&order=ASC&order_by=display_name&search=&search_columns%5B%5D=display_name&search_columns%5B%5D=user_login

# Admin experience
https://public-api.wordpress.com/rest/v1.1/sites/103415197/jetpack/modules?http_envelope=1
https://public-api.wordpress.com/rest/v1.1/sites/103415197/domains?http_envelope=1
https://public-api.wordpress.com/rest/v1.1/sites/103415197/post-types?http_envelope=1
https://public-api.wordpress.com/rest/v1.1/sites/103415197/stats?http_envelope=1
https://public-api.wordpress.com/rest/v1.1/sites/103415197/stats/comments?http_envelope=1&domain=wordpress.albatrossdemos.com
https://public-api.wordpress.com/rest/v1.1/notifications/?http_envelope=1&fields=id%2Ctype%2Cunread%2Cbody%2Csubject%2Ctimestamp%2Cmeta%2Cnote_hash&number=10
https://public-api.wordpress.com/rest/v1.1/sites/103415197/posts?http_envelope=1&status=published&order_by=date&order=DESC&author=false&type=post&site_visibility=visible
https://public-api.wordpress.com/rest/v1.1/sites/103415197/updates?http_envelope=1

# Menu admin
https://public-api.wordpress.com/rest/v1.1/sites/103415197/menus?http_envelope=1
POST https://public-api.wordpress.com/rest/v1.1/sites/103415197/menus/new?http_envelope=1
POST https://public-api.wordpress.com/rest/v1.1/sites/103415197/menus/3?http_envelope=1


# POSTing Post
POST https://public-api.wordpress.com/rest/v1.2/sites/103415197/posts/new?http_envelope=1&context=edit
POST https://public-api.wordpress.com/rest/v1.1/sites/103415197/posts/35/autosave?http_envelope=1
POST https://public-api.wordpress.com/rest/v1.2/sites/103415197/posts/35?http_envelope=1&context=edit

# Post edit page
https://public-api.wordpress.com/rest/v1.1/sites/103415197/categories?http_envelope=1&number=300&page=1
https://public-api.wordpress.com/rest/v1.1/sites/103415197/tags?http_envelope=1&number=1000&order_by=count&order=DESC&page=1
https://public-api.wordpress.com/rest/v1.1/sites/103415197/post-formats?http_envelope=1&locale=en


# Not needed - stats
https://public-api.wordpress.com/rest/v1.1/sites/103415197/stats/publicize?http_envelope=1&domain=wordpress.albatrossdemos.com
https://public-api.wordpress.com/rest/v1.1/sites/103415197/stats/comments?http_envelope=1&domain=wordpress.albatrossdemos.com
https://public-api.wordpress.com/rest/v1.1/sites/103415197/stats/insights?http_envelope=1

# Not needed - other
https://public-api.wordpress.com/rest/v1.1/sites/103415197/stats/streak?http_envelope=1&startDate=2014-12-01&endDate=2015-12-31&max=3000
https://public-api.wordpress.com/rest/v1.1/help/olark/mine?http_envelope=1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment