All Projects → Kong → apistatus

Kong / apistatus

Licence: MIT license
API status is a simple tool that checks if an API is online. http://apistatus.org

Programming Languages

javascript
184084 projects - #8 most used programming language

API Status Test Status Test Coverage License

API status is a simple tool to send API requests and retrieve standard response data.

Install

npm install apistatus

Usage

var apistatus = require('apistatus')

apistatus('http://mockbin.com/status/200', function(status){
  console.log(status)
  // { online: true, statusCode: 200, category: 'Success', message: 'OK' }
})

apistatus('http://mockbin.com/status/404', function(status){
  console.log(status)
  // { online: true, statusCode: 404, category: 'Client Error', message: 'Not Found' }
})

apistatus('http://notarealdomain35252.com/', function(status){
  console.log(status)
  // { online: false }
})

apistatus(require("har.json"), function(statuses){
  console.log(statuses)
  // [{ online: true, statusCode: 200, category: 'Success', message: 'OK' },...
})

Wishlist

  • optionally use the HAR response object to check against, essentially automated API testing

Contributing

Forks and pull requests are most welcomed. Please run npm test before sending a pull request.

MIT license

Copyright (c) 2015, Mashape (https://www.mashape.com/)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].