API endpoint
https://api.monitoraweb.com/v1/monitors
Request example
curl --location --request GET 'https://api.monitoraweb.com/v1/monitors' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameters
search
search_by
name for Nombre, url for URL. Defaults to: name.
host
ejemplo.com.
status_page_id
sort_by
id for Fecha de creación, name for Nombre, url for URL. Defaults to: id.
sort
desc for Descendente, asc for Descendente. Defaults to: desc.
per_page
10, 25, 50, 100. Defaults to: 10.
API endpoint
https://api.monitoraweb.com/v1/monitors/{id}
Request example
curl --location --request GET 'https://api.monitoraweb.com/v1/monitors/{id}' \ --header 'Accept: application/json' \ --header 'Authorization: Bearer {api_key}'
API endpoint
https://api.monitoraweb.com/v1/monitors
Request example
curl --location --request POST 'https://api.monitoraweb.com/v1/monitors' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}' \ --data-urlencode 'name={name}' \ --data-urlencode 'url={url}' \ --data-urlencode 'interval={interval}'
Parameters
name
url
interval
60, 180, 300, 600, 900, 1800, 3600.
alert_condition
url_unavailable for La URL deja de estar disponible, url_text for La respuesta contiene el texto, url_no_text for La respuesta no contiene el texto. Defaults to: url_unavailable.
alert_text_lookup
alert_condition field set to url_text, url_no_text.
alert_channel_ids[]
source
btl360, api, manual. Defaults to: api. Also accepted as the X-Source header.
btl360_client_id
hosting
Banahosting, Siteground, Desconocido. Also accepted as hosting_provider.
ads
1 / Sí for Sí, 0 / No for No.
request_method
GET, POST, HEAD, PUT, DELETE, PATCH, OPTIONS. Defaults to: GET.
request_headers[index][key]
request_headers[index][value]
request_auth_username
request_auth_password
cache_buster
0 for Desactivado, 1 for Activado. Defaults to: 0.
ssl_alert_days
0, 1, 2, 3, 7, 14, 30, 60.
domain_alert_days
0, 1, 2, 3, 7, 14, 30, 60.
maintenance_start_at
Y-m-dTH:i:s format.
maintenance_end_at
Y-m-dTH:i:s format.
API endpoint
https://api.monitoraweb.com/v1/monitors/{id}
Request example
curl --location --request PUT 'https://api.monitoraweb.com/v1/monitors/{id}' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}'
Parameters
name
url
interval
60, 180, 300, 600, 900, 1800, 3600.
alert_condition
url_unavailable for La URL deja de estar disponible, url_text for La respuesta contiene el texto, url_no_text for La respuesta no contiene el texto. Defaults to: url_unavailable.
alert_text_lookup
alert_condition field set to url_text, url_no_text.
alert_channel_ids[]
source
btl360, api, manual. Defaults to: api. Also accepted as the X-Source header.
btl360_client_id
hosting
Banahosting, Siteground, Desconocido. Also accepted as hosting_provider.
ads
1 / Sí for Sí, 0 / No for No.
request_method
GET, POST, HEAD, PUT, DELETE, PATCH, OPTIONS. Defaults to: GET.
request_headers[index][key]
request_headers[index][value]
request_auth_username
request_auth_password
cache_buster
0 for Desactivado, 1 for Activado.
ssl_alert_days
0, 1, 2, 3, 7, 14, 30, 60.
domain_alert_days
0, 1, 2, 3, 7, 14, 30, 60.
maintenance_start_at
Y-m-dTH:i:s format.
maintenance_end_at
Y-m-dTH:i:s format.
pause
true / 1 to pause (stop HTTP, SSL, domain checks and webhooks) and false / 0 to resume the same monitor. Incidents and check history are kept.
API endpoint
https://apibtl.monitoraweb.com/v1/monitors/btl360-sync
One JSON request to pause or resume by host and to fill Hosting and ADS. Does not create or delete monitors. History is kept.
Request example
curl --location --request POST 'https://apibtl.monitoraweb.com/v1/monitors/btl360-sync' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer {api_key}' \
--data-raw '{
"generated_at": "2026-09-12T00:00:00Z",
"pausar": [
{"host": "viejo.com", "cliente_id": 15, "motivo": "inactivo_agencia"}
],
"reanudar": [
{"host": "cliente-vuelve.com", "cliente_id": 22}
],
"hosting": [
{"host": "ejemplo.com", "hosting_provider": "Banahosting"}
],
"ads": [
{"host": "cliente-con-campana.com", "ads": "Sí"}
]
}'
API endpoint
https://api.monitoraweb.com/v1/monitors/{id}
Request example
curl --location --request DELETE 'https://api.monitoraweb.com/v1/monitors/{id}' \ --header 'Authorization: Bearer {api_key}'