웹사이트

인증
API 키는 요청의 Authorization 헤더에 Bearer 토큰으로 포함되어야 합니다. API 키 발급받기.
목록

API 엔드포인트

GET
https://makeron.tech/api/v1/websites

요청 예시

curl --location --request GET 'https://makeron.tech/api/v1/websites' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'

매개변수

이름
유형
설명
search
선택 사항 string
검색어.
search_by
선택 사항 string
검색 기준. 가능한 값: 도메인domain. 기본값: domain.
sort_by
선택 사항 string
정렬 기준. 가능한 값: 생성일id, 도메인domain, 점수reports_avg_score, SEO분석 시작reports_count. 기본값: id.
sort
선택 사항 string
정렬. 가능한 값: 내림차순desc, 오름차순asc. 기본값: desc.
per_page
선택 사항 integer
페이지당 결과 수. 가능한 값: 10, 25, 50, 100. 기본값: 10.
보기

API 엔드포인트

GET
https://makeron.tech/api/v1/websites/{id}

요청 예시

curl --location --request GET 'https://makeron.tech/api/v1/websites/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
업데이트

API 엔드포인트

PUT PATCH
https://makeron.tech/api/v1/websites/{id}

요청 예시

curl --location --request PUT 'https://makeron.tech/api/v1/websites/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'

매개변수

이름
유형
설명
privacy
선택 사항 integer
개인정보. 가능한 값: 공개0, 비공개1, 비밀번호2.
password
선택 사항 string
비밀번호. privacy 필드가 2로 설정되어 있을 때만 작동합니다.
삭제

API 엔드포인트

DELETE
https://makeron.tech/api/v1/websites/{id}

요청 예시

curl --location --request DELETE 'https://makeron.tech/api/v1/websites/{id}' \
--header 'Authorization: Bearer {api_key}'