Skip to main content
GET
/
reports
curl --request GET \
  --url 'https://api.falconalert.com/reports?status=1&page=1'
[
  {
    "id": 1,
    "title": "Reporte de sitio fraudulento",
    "image": "report-pictures/1d92a0a7cbb8f6a32b6ff1a98ecf2af4f13293be20e38e7db23ccfca9a412b8a.jpg",
    "description": "Este sitio web solicita datos bancarios sin medidas de seguridad y redirige a páginas falsas.",
    "created_at": "2025-09-27T23:50:39.000Z",
    "updated_at": "2025-09-27T23:50:39.000Z",
    "user_name": "Skibidi Toilet",
    "created_by": 1,
    "user_image": "profile-pictures/default.jpg",
    "report_url": "https://banco-seguro-falso.com",
    "categories": [1, 5]
  },
  {
    "id": 2,
    "title": "Página de phishing detectada",
    "image": "report-pictures/34baf3de9a5ef873b432bd723d9e0d45a4c2b79f915a86d2a7b5419ccf78d66c.jpg",
    "description": "El portal imita la interfaz de una empresa de envíos para robar credenciales de acceso.",
    "created_at": "2025-09-27T23:51:32.000Z",
    "updated_at": "2025-09-27T23:51:32.000Z",
    "user_name": "Dr. Sahur",
    "created_by": 2,
    "user_image": "profile-pictures/default.jpg",
    "report_url": "https://envios-gratis-seguro.net",
    "categories": [2, 5]
  }
]

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/4rt21/backend-proyecto/llms.txt

Use this file to discover all available pages before exploring further.

Retrieves a list of reports with optional filtering by status, ID, and pagination support.

Query Parameters

status
string
Filter reports by status. Accepts one of the following values:
  • 1 - Pendiente (Pending)
  • 2 - Aprobada (Approved)
  • 3 - Rechazada (Rejected)
id
string
Filter reports by specific report ID. Must be a positive integer.
page
number
Page number for pagination. Must be a positive integer. Returns paginated results when specified.

Response

id
number
Unique identifier for the report
title
string
Title of the report
image
string
Path to the report’s image file
description
string
Detailed description of the reported issue
created_at
string
ISO 8601 timestamp when the report was created
updated_at
string
ISO 8601 timestamp when the report was last updated
user_name
string
Name of the user who created the report
created_by
number
User ID of the report creator
user_image
string
Path to the creator’s profile image
report_url
string
URL of the reported website or resource
categories
array
Array of category IDs associated with this report
curl --request GET \
  --url 'https://api.falconalert.com/reports?status=1&page=1'
[
  {
    "id": 1,
    "title": "Reporte de sitio fraudulento",
    "image": "report-pictures/1d92a0a7cbb8f6a32b6ff1a98ecf2af4f13293be20e38e7db23ccfca9a412b8a.jpg",
    "description": "Este sitio web solicita datos bancarios sin medidas de seguridad y redirige a páginas falsas.",
    "created_at": "2025-09-27T23:50:39.000Z",
    "updated_at": "2025-09-27T23:50:39.000Z",
    "user_name": "Skibidi Toilet",
    "created_by": 1,
    "user_image": "profile-pictures/default.jpg",
    "report_url": "https://banco-seguro-falso.com",
    "categories": [1, 5]
  },
  {
    "id": 2,
    "title": "Página de phishing detectada",
    "image": "report-pictures/34baf3de9a5ef873b432bd723d9e0d45a4c2b79f915a86d2a7b5419ccf78d66c.jpg",
    "description": "El portal imita la interfaz de una empresa de envíos para robar credenciales de acceso.",
    "created_at": "2025-09-27T23:51:32.000Z",
    "updated_at": "2025-09-27T23:51:32.000Z",
    "user_name": "Dr. Sahur",
    "created_by": 2,
    "user_image": "profile-pictures/default.jpg",
    "report_url": "https://envios-gratis-seguro.net",
    "categories": [2, 5]
  }
]

Build docs developers (and LLMs) love