프로젝트

노트
Expert level
API Key는 Authorization 헤더에 Bearer 토큰으로 전송되어야 합니다. API key 확인하기.
리스트

API endpoint:

GET
https://seosecret.org/api/v1/projects

Request example:

curl --location --request GET 'https://seosecret.org/api/v1/projects' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
Parameter
Type
Description
search
옵션 string
검색어
search_by
옵션 string
검색 조건. 가능한 값: project이름. 기본값: project.
sort_by
옵션 string
정렬 기준. 가능한 값: created_at작성일 기준, project이름. 기본값: created_at.
sort
옵션 string
정렬. 가능한 값: desc안좋은 보고서부터, asc좋은 보고서부터. 기본값: desc.
per_page
옵션 int
페이지당 표기할 보고서 수. 가능한 값: 10, 25, 50, 100. 기본값: 25.
삭제하기

API endpoint:

DELETE
https://seosecret.org/api/v1/projects/{project}

Request example:

curl --location --request DELETE 'https://seosecret.org/api/v1/projects/{project}' \
--header 'Authorization: Bearer {api_key}'