# Get lost backlink reports This secured endpoint allows users to retrieve reports on lost backlinks. The and parameters are optional. If these parameters are not provided in the request, the report will automatically cover a default period of the last 60 days from the current date Endpoint: GET /api/v1/reports/backlinks/lost/accounts/{account_id}/campaigns/{campaign_id}/date_from/{date_from}/date_to/{date_to} Version: 2.0.0 Security: JWTAuth ## Path parameters: - `account_id` (integer, required) Account ID of the requested account - `campaign_id` (integer, required) Campaign ID of the requested account - `date_from` (string) date from optional parameter - `date_to` (string) date to optional parameter ## Response 200 fields (application/json): - `data` (array) Example: [{"url_from":"https://www.semify.com","url_to":"https://www.semify.com","date_last_seen":"2024-12-01","anchor_text":"https://www.semify.com"}] - `data.url_from` (string) Example: "https://www.semify.com" - `data.url_to` (string) Example: "https://www.semify.com" - `data.date_last_seen` (string) Example: "2019-07-23 00:00:00" - `data.anchor_text` (string) Example: "https://www.semify.com" - `messages` (array) Example: [] - `error` (boolean) ## Response 400 fields (application/json): - `data` (object, required) Example: {} - `error` (boolean, required) Example: true - `pagination` (object, required) Example: {"totalPages":1,"maxRows":0,"offset":0,"page":1,"totalRecords":0} - `pagination.totalPages` (integer) Example: 1 - `pagination.maxRows` (integer) - `pagination.offset` (integer) - `pagination.page` (integer) Example: 1 - `pagination.totalRecords` (integer) - `messages` (array, required) Example: ["Missing parameter"] ## Response 401 fields (application/json): - `data` (object, required) Example: {} - `error` (boolean, required) Example: true - `pagination` (object, required) Example: {"totalPages":1,"maxRows":0,"offset":0,"page":1,"totalRecords":0} - `pagination.totalPages` (integer) Example: 1 - `pagination.maxRows` (integer) - `pagination.offset` (integer) - `pagination.page` (integer) Example: 1 - `pagination.totalRecords` (integer) - `messages` (array, required) Example: ["Invalid Authorization"] ## Response 404 fields (application/json): - `data` (object, required) Example: {} - `error` (boolean, required) Example: true - `pagination` (object, required) Example: {"totalPages":1,"maxRows":0,"offset":0,"page":1,"totalRecords":0} - `pagination.totalPages` (integer) Example: 1 - `pagination.maxRows` (integer) - `pagination.offset` (integer) - `pagination.page` (integer) Example: 1 - `pagination.totalRecords` (integer) - `messages` (array, required) Example: ["Not Found"] ## Response 405 fields (application/json): - `data` (object, required) Example: {} - `error` (boolean, required) Example: true - `pagination` (object, required) Example: {"totalPages":1,"maxRows":0,"offset":0,"page":1,"totalRecords":0} - `pagination.totalPages` (integer) Example: 1 - `pagination.maxRows` (integer) - `pagination.offset` (integer) - `pagination.page` (integer) Example: 1 - `pagination.totalRecords` (integer) - `messages` (array, required) Example: ["Method Not Allowed"]