Check instance health via API
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2025 07:23 AM - edited 05-29-2025 07:27 AM
Hi all,
Is there any way to check if the ServiceNow instance is up and running through a REST API call from an External Application?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2025 01:54 AM
Yes, I think you can check if your ServiceNow instance is up and running by making a REST API call. One approach can be to send a GET request to any ServiceNow REST API's endpoint and check if 200 OK status code is returned or not. If not the instance may be down.
Hope that Helps!
Please mark this response correct by clicking on "Accept as Solution" and/or mark it as "Helpful" (kudos) if it helps.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2025 02:07 AM
you can use any OOTB table API call and if you get a valid HTTP response then it means it's up and running.
https://<your_instance>.service-now.com/api/now/table/incident
If my response helped please mark it correct and close the thread so that it benefits future readers.
Ankur
✨ Certified Technical Architect || ✨ 9x ServiceNow MVP || ✨ ServiceNow Community Leader
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2025 02:53 AM
Using incident table is returning all the incident records instead of this is there any other way?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-03-2025 04:05 AM
You can use any ServiceNow REST API's endpoint, no need to use the incident table one. Choose something that doesn't return to much and ignore the results, check only the 200 OK status code is returned or not.
Hope that Helps!
Please mark this response correct by clicking on "Accept as Solution" and/or mark it as "Helpful" (kudos) if it helps.