jService · Example Payload

Jservice Final Example

Games And ComicsTriviaJeopardyOpen SourceRubyRailsPublic APIs

Jservice Final Example is an example object payload from jService, with 4 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationoperationIdrequestresponse

Example Payload

Raw ↑
{
  "operation": "GET /api/final",
  "operationId": "getFinalClues",
  "request": {
    "method": "GET",
    "url": "http://jservice.io/api/final?count=1"
  },
  "response": {
    "status": 200,
    "headers": {
      "Content-Type": "application/json; charset=utf-8"
    },
    "body": [
      {
        "id": 88321,
        "answer": "Marie Curie",
        "question": "She is the only person to win Nobel prizes in two different sciences",
        "value": null,
        "airdate": "2008-04-04T19:00:00.000Z",
        "category_id": 8221,
        "game_id": 2455,
        "invalid_count": 0,
        "category": {
          "id": 8221,
          "title": "famous scientists",
          "clues_count": 12
        }
      }
    ]
  }
}