Create, read, update and delete report resources through the REST API.
https://seopro.ooguy.com/api/v1/reports
Returns a paginated list of the authenticated user's reports.
curl --location --request GET 'https://seopro.ooguy.com/api/v1/reports' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
search
search_by
url for URL. Defaults to: url.project
result
good for Good, decent for Decent, bad for Bad.sort_by
id for Date created, generated_at for Date generated, url for URL, score for Score. Defaults to: id.sort
desc for Descending, asc for Ascending. Defaults to: desc.per_page
10, 25, 50, 100. Defaults to: 10.https://seopro.ooguy.com/api/v1/reports/{id}
Returns a single report by {id} identifier.
curl --location --request GET 'https://seopro.ooguy.com/api/v1/reports/{id}' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer {api_key}'
https://seopro.ooguy.com/api/v1/reports
Creates a new report for the given URL.
curl --location --request POST 'https://seopro.ooguy.com/api/v1/reports' \ --header 'Content-Type: application/x-www-form-urlencoded' \ --header 'Authorization: Bearer {api_key}' \ --data-urlencode 'url={url}'
url
privacy
0 for Public, 1 for Private, 2 for Password. Defaults to: 0.password
privacy field set to 2.https://seopro.ooguy.com/api/v1/reports/{id}
Updates an existing report identified by {id}.
curl --location --request PUT 'https://seopro.ooguy.com/api/v1/reports/{id}' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header 'Authorization: Bearer {api_key}'
privacy
0 for Public, 1 for Private, 2 for Password.password
privacy field set to 2.update
0 for No, 1 for Yes. Defaults to: 0.https://seopro.ooguy.com/api/v1/reports/{id}
Deletes a single report by {id} identifier.
curl --location --request DELETE 'https://seopro.ooguy.com/api/v1/reports/{id}' \
--header 'Authorization: Bearer {api_key}'