Skip to content

Instantly share code, notes, and snippets.

@rodcul
Created June 10, 2015 16:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rodcul/21a79d80f55a87862cbb to your computer and use it in GitHub Desktop.
Save rodcul/21a79d80f55a87862cbb to your computer and use it in GitHub Desktop.
Chitter API spec

Get a list of peeps

GET /peeps
{
"items": [
	{"id": 1,
	"created_at": "2009-07-12T20:10:41Z",
	"message": "my first peep"
	},
	{"id": 2,
	"created_at": "2009-07-12T20:10:41Z",
	"message": "my second peep"
	}
]
}

Response

Post a peep

POST /peep
{
	"message": "my third tweet"
}

Response Pending definition

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment