모니터 목록
curl --request POST \
--url https://api.pubrio.com/monitors \
--header 'Content-Type: application/json' \
--header 'pubrio-api-key: <api-key>' \
--data '
{
"destination_types": [
"<string>"
],
"detection_modes": [
"<string>"
],
"is_ascending_order": false,
"search_term": "<string>",
"per_page": 25,
"page": 1,
"profile_id": 123
}
'import requests
url = "https://api.pubrio.com/monitors"
payload = {
"destination_types": ["<string>"],
"detection_modes": ["<string>"],
"is_ascending_order": False,
"search_term": "<string>",
"per_page": 25,
"page": 1,
"profile_id": 123
}
headers = {
"pubrio-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'pubrio-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
destination_types: ['<string>'],
detection_modes: ['<string>'],
is_ascending_order: false,
search_term: '<string>',
per_page: 25,
page: 1,
profile_id: 123
})
};
fetch('https://api.pubrio.com/monitors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.pubrio.com/monitors",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'destination_types' => [
'<string>'
],
'detection_modes' => [
'<string>'
],
'is_ascending_order' => false,
'search_term' => '<string>',
'per_page' => 25,
'page' => 1,
'profile_id' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"pubrio-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pubrio.com/monitors"
payload := strings.NewReader("{\n \"destination_types\": [\n \"<string>\"\n ],\n \"detection_modes\": [\n \"<string>\"\n ],\n \"is_ascending_order\": false,\n \"search_term\": \"<string>\",\n \"per_page\": 25,\n \"page\": 1,\n \"profile_id\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("pubrio-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.pubrio.com/monitors")
.header("pubrio-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"destination_types\": [\n \"<string>\"\n ],\n \"detection_modes\": [\n \"<string>\"\n ],\n \"is_ascending_order\": false,\n \"search_term\": \"<string>\",\n \"per_page\": 25,\n \"page\": 1,\n \"profile_id\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pubrio.com/monitors")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["pubrio-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"destination_types\": [\n \"<string>\"\n ],\n \"detection_modes\": [\n \"<string>\"\n ],\n \"is_ascending_order\": false,\n \"search_term\": \"<string>\",\n \"per_page\": 25,\n \"page\": 1,\n \"profile_id\": 123\n}"
response = http.request(request)
puts response.read_body{
"data": {
"pagination": {
"page": 1,
"per_page": 25,
"total_entries": 8,
"total_pages": 1,
"total_display_pages": 1,
"is_timeout": false
},
"monitors": [
{
"monitor_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Company First Monitor",
"description": null,
"detection_mode": "company_first",
"signal_types": [
"jobs",
"news",
"advertisements"
],
"signal_filters": [
{
"filters": {
"locations": [
"US"
]
},
"signal_type": "jobs"
},
{
"filters": {
"locations": [
"US"
]
},
"signal_type": "news"
},
{
"filters": {
"target_locations": [
"US"
]
},
"signal_type": "advertisements"
}
],
"company_filters": {
"locations": [
"US"
]
},
"companies": [
"67c4696b-b7b0-46b5-b2af-9f434543661e"
],
"is_company_enrichment": true,
"is_people_enrichment": true,
"people_enrichment_configs": [
{
"filters": {
"people_locations": [
"US"
]
},
"max_people_to_return": 3,
"people_contact_types": [
"email-work"
]
}
],
"destination_type": "webhook",
"destination_config": {
"webhook_url": "https://usewebhook.com/example",
"headers": {
"X-Custom-Auth": "your-token"
},
"body": {
"source": "pubrio"
}
},
"notification_email": "[email protected]",
"max_retry_per_trigger": 1,
"retry_delay_second": 1,
"max_records_per_trigger": 25,
"max_daily_trigger": 500,
"frequency_minute": 0,
"status": "active",
"max_failure_trigger": 5,
"repeated_failure_count": 0,
"last_trigger_at": "2026-04-05T22:29:36.349Z",
"last_processed_at": "2026-04-05T18:28:05.715Z",
"masked_signature": "9••••••••••••••••f09",
"created_at": "2026-04-03T18:49:20.048Z",
"last_modified": "2026-04-05T22:29:36.349Z",
"user": {
"user_id": "a1b2c3d4-0000-0000-0000-000000000000",
"nickname": "Jane Smith",
"email": "[email protected]"
},
"total_trigger_today": 4,
"success_rate": "1.000"
},
"..."
]
}
}{
"code": 40001,
"message": "오류 코드 및 메시지는 상황에 따라 다를 수 있습니다. 자세한 내용은 문서를 참조하세요.",
"details": {}
}{
"error": "요청 빈도가 제한을 초과했습니다. 잠시 후 다시 시도해주세요."
}{
"error": "요청을 처리하는 중 서버에서 예기치 않은 오류가 발생했습니다"
}모니터
모니터 목록 ���회
워크스페이스의 모든 모니터 목록을 조회합니다.
POST
/
monitors
모니터 목록
curl --request POST \
--url https://api.pubrio.com/monitors \
--header 'Content-Type: application/json' \
--header 'pubrio-api-key: <api-key>' \
--data '
{
"destination_types": [
"<string>"
],
"detection_modes": [
"<string>"
],
"is_ascending_order": false,
"search_term": "<string>",
"per_page": 25,
"page": 1,
"profile_id": 123
}
'import requests
url = "https://api.pubrio.com/monitors"
payload = {
"destination_types": ["<string>"],
"detection_modes": ["<string>"],
"is_ascending_order": False,
"search_term": "<string>",
"per_page": 25,
"page": 1,
"profile_id": 123
}
headers = {
"pubrio-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'pubrio-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
destination_types: ['<string>'],
detection_modes: ['<string>'],
is_ascending_order: false,
search_term: '<string>',
per_page: 25,
page: 1,
profile_id: 123
})
};
fetch('https://api.pubrio.com/monitors', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.pubrio.com/monitors",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'destination_types' => [
'<string>'
],
'detection_modes' => [
'<string>'
],
'is_ascending_order' => false,
'search_term' => '<string>',
'per_page' => 25,
'page' => 1,
'profile_id' => 123
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"pubrio-api-key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.pubrio.com/monitors"
payload := strings.NewReader("{\n \"destination_types\": [\n \"<string>\"\n ],\n \"detection_modes\": [\n \"<string>\"\n ],\n \"is_ascending_order\": false,\n \"search_term\": \"<string>\",\n \"per_page\": 25,\n \"page\": 1,\n \"profile_id\": 123\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("pubrio-api-key", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.pubrio.com/monitors")
.header("pubrio-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"destination_types\": [\n \"<string>\"\n ],\n \"detection_modes\": [\n \"<string>\"\n ],\n \"is_ascending_order\": false,\n \"search_term\": \"<string>\",\n \"per_page\": 25,\n \"page\": 1,\n \"profile_id\": 123\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.pubrio.com/monitors")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["pubrio-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"destination_types\": [\n \"<string>\"\n ],\n \"detection_modes\": [\n \"<string>\"\n ],\n \"is_ascending_order\": false,\n \"search_term\": \"<string>\",\n \"per_page\": 25,\n \"page\": 1,\n \"profile_id\": 123\n}"
response = http.request(request)
puts response.read_body{
"data": {
"pagination": {
"page": 1,
"per_page": 25,
"total_entries": 8,
"total_pages": 1,
"total_display_pages": 1,
"is_timeout": false
},
"monitors": [
{
"monitor_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"name": "Company First Monitor",
"description": null,
"detection_mode": "company_first",
"signal_types": [
"jobs",
"news",
"advertisements"
],
"signal_filters": [
{
"filters": {
"locations": [
"US"
]
},
"signal_type": "jobs"
},
{
"filters": {
"locations": [
"US"
]
},
"signal_type": "news"
},
{
"filters": {
"target_locations": [
"US"
]
},
"signal_type": "advertisements"
}
],
"company_filters": {
"locations": [
"US"
]
},
"companies": [
"67c4696b-b7b0-46b5-b2af-9f434543661e"
],
"is_company_enrichment": true,
"is_people_enrichment": true,
"people_enrichment_configs": [
{
"filters": {
"people_locations": [
"US"
]
},
"max_people_to_return": 3,
"people_contact_types": [
"email-work"
]
}
],
"destination_type": "webhook",
"destination_config": {
"webhook_url": "https://usewebhook.com/example",
"headers": {
"X-Custom-Auth": "your-token"
},
"body": {
"source": "pubrio"
}
},
"notification_email": "[email protected]",
"max_retry_per_trigger": 1,
"retry_delay_second": 1,
"max_records_per_trigger": 25,
"max_daily_trigger": 500,
"frequency_minute": 0,
"status": "active",
"max_failure_trigger": 5,
"repeated_failure_count": 0,
"last_trigger_at": "2026-04-05T22:29:36.349Z",
"last_processed_at": "2026-04-05T18:28:05.715Z",
"masked_signature": "9••••••••••••••••f09",
"created_at": "2026-04-03T18:49:20.048Z",
"last_modified": "2026-04-05T22:29:36.349Z",
"user": {
"user_id": "a1b2c3d4-0000-0000-0000-000000000000",
"nickname": "Jane Smith",
"email": "[email protected]"
},
"total_trigger_today": 4,
"success_rate": "1.000"
},
"..."
]
}
}{
"code": 40001,
"message": "오류 코드 및 메시지는 상황에 따라 다를 수 있습니다. 자세한 내용은 문서를 참조하세요.",
"details": {}
}{
"error": "요청 빈도가 제한을 초과했습니다. 잠시 후 다시 시도해주세요."
}{
"error": "요청을 처리하는 중 서버에서 예기치 않은 오류가 발생했습니다"
}본문
application/json
전달 대상 유형으로 필터링합니다 (예: ['email', 'webhook']). 빈 배열은 전체를 반환합니다.
감지 모드로 필터링합니다 (예: ['company_first', 'signal_first']). 빈 배열은 전체를 반환합니다.
모니터 상태로 필터링합니다.
사용 가능한 옵션:
draft, active, paused, inactive 오름차순으로 정렬합니다. 기본값은 false(내림차순)입니다.
정렬 기준 필드입니다. 허용 값: 'name', 'last_trigger_at', 'last_modified'. 생략하면 created_at 내림차순으로 정렬됩니다.
사용 가능한 옵션:
name, last_trigger_at, last_modified 모니터 이름만을 대상으로 매칭되는 검색어입니다(정규 표현식, 대소문자 구분 없음).
페이지당 결과 수입니다. 기본값은 25입니다.
페이지네이션을 위한 페이지 번호입니다. 기본값은 1입니다.
선택 사항. 요청을 수행하는 팀 식별자입니다. API 키에 이미 워크스페이스 정보가 포함되어 있으므로 이 매개변수는 더 이상 필수가 아닙니다. 제공되면 조회 및 사용 크레딧 추적을 위해 특정 팀(작업 공간)과 연계됩니다.
자세한 내용은 팀 탭의 user details 엔드포인트를 참고하세요.
응답
페이지네이션된 모니터 목록이 포함된 성공적인 응답입니다. 관심 목록 기반 모니터는 이 목록에서 제외됩니다.
Show child attributes
Show child attributes
⌘I

