app_recetas
  1. Recetas
app_recetas
  • Auth
    • sign-in
      POST
    • recover-user
      POST
    • recover-user-confirm
      POST
    • recover-password-change
      POST
    • user-info
      GET
    • user-info
      PUT
  • Recetas
    • Últimas recetas cargadas
      GET
    • Buscar recetas
      POST
    • Consulta de existencia de receta
      GET
    • Obtiene receta por id
      GET
    • Agregar receta
      POST
    • Actualizar receta
      PUT
    • Valoración receta
      POST
    • Obtener mis recetas
      GET
  • Favoritos
    • Obtener recetas favoritas
      GET
    • Agregar receta a favoritos
      POST
    • Eliminar receta de favoritos
      DELETE
  • Otros
    • Listar categorías de recetas
      GET
    • Listar ingredientes de recetas
      GET
    • Listar medidas
      GET
  • Admin
    • Aprobar comentario
      PUT
    • Aprobar receta
      PUT
  1. Recetas

Obtener mis recetas

Developing
GET
/get-my-recipes
Devuelve todas las recetas del usuario incluídas las no aprobadas.
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://okqjoprwutewmsgnphyc.supabase.co/functions/v1/get-my-recipes'
Response Response Example
200 - Example 1
{
    "message": "Recetas obtenidas exitosamente.",
    "recipes": [
        {
            "id": "201",
            "name": "Guiso de Lentejas",
            "description": "Guiso tradicional con lentejas, zanahorias y papa.",
            "createdAt": "2025-04-10T10:30:00Z",
            "status": "aprobada"
        },
        {
            "id": "202",
            "name": "Ensalada Mediterránea",
            "description": "Ensalada fresca con ingredientes típicos del mediterráneo.",
            "createdAt": "2025-03-20T08:15:00Z",
            "status": "pendiente"
        }
    ]
}

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200Success
application/json
Body
object {0}
🟢200OK
🟠401Unauthorized
🔴500Server Error
Modified at 2025-04-20 00:05:39
Previous
Valoración receta
Next
Obtener recetas favoritas
Built with