I'm building a RESTful API, part of which will be checking if a user has a valid subscription. I'm thinking of doing it like this:
GET https://api.example.org/subscriptions/me?username=johndoe&password=abc123&apikey=somekey HTTP/1.1
Host: api.example.org
Accept: application/json
HTTP/1.1 200 OK
Content-Type: application/json
{
"username": "johndoe",
"id": 5152,
"valid": true,
"valid_until": "2013-01-01 00:00:00",
"account_level": "basic"
}
The system would return the following status codes:
- 200 if the user has a valid subscription
- 400 if the username or password parameters were omitted
- 401 if the user credentials are invalid
- 402 if the user doesn't have a valid subscription.
- 403 if the user's API key is invalid
- 404 if it's an invalid user
- 429 if the client has made too many API requests
Is this a RESTful API design? Could it be done better? Is HTTP 403 a good response for invalid API keys?
{code:nnn, message:'Invalid API Key'}– slashingweapon Jan 25 at 0:17