Get categories of the network

Query string parameters

Response body parameters

Example request

Request GET https://{networkname}.api.offerslook.com/v1/offer_categories?sort=+id&offset=2&limit=8&fields=id,name

Request GET http://{networkname}.api.offerslook.com/v1/offer_categories?sort=+id&offset=2&limit=8&fields=id,name

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
        "rowset": [
          {
            "id": 74,
            "name": "Happy"
          },
          {
            "id": 76,
            "name": "Sunday"
          }
        ],
        "totalPages": 2,
        "totalRows": 10,
        "offset": 2,
        "limit": 8
      }
    }

Last updated