Skip to main content
Retrieves detailed information about a specific student, including all associated guardians.

Path Parameters

student_id
uuid
required
The unique identifier of the student to retrieve

Response

Returns a complete student object with associated guardians.
id
uuid
Unique identifier for the student
school_id
uuid
School identifier
user_id
uuid
Associated user account ID (if linked)
document_type
string
Type of identification document
document_number
string
Identification document number
full_name
string
Student’s full name
birth_date
date
Date of birth in YYYY-MM-DD format
gender
string
Student’s gender
is_active
boolean
Whether the student is currently active
extra_data
object
Additional custom data for the student
piar_data
object
PIAR (Individual Plan for Reasonable Adjustments) data for students with special educational needs
guardians
array
Array of guardian objects associated with this student, ordered by priority and nameSee the List Students endpoint for the complete guardian object schema.
created_at
datetime
Timestamp when the student was created
updated_at
datetime
Timestamp when the student was last updated

Permissions Required

One of the following permissions:
  • read:students
  • read:own_students
  • read:all
curl -X GET "https://api.athena-erp.com/students/550e8400-e29b-41d4-a716-446655440000" \
  -H "Authorization: Bearer YOUR_API_TOKEN"
{
  "id": "550e8400-e29b-41d4-a716-446655440000",
  "school_id": "123e4567-e89b-12d3-a456-426614174000",
  "user_id": null,
  "document_type": "TI",
  "document_number": "1234567890",
  "full_name": "Juan Pérez García",
  "birth_date": "2010-05-15",
  "gender": "M",
  "is_active": true,
  "extra_data": {
    "blood_type": "O+",
    "allergies": ["Penicilina"]
  },
  "piar_data": {},
  "guardians": [
    {
      "id": "660e8400-e29b-41d4-a716-446655440001",
      "document_type": "CC",
      "document_number": "98765432",
      "full_name": "María García",
      "phone": "+57 300 1234567",
      "email": "[email protected]",
      "address": "Calle 123 #45-67",
      "occupation": "Ingeniera",
      "workplace": "Tech Corp",
      "is_active": true,
      "relationship": "Mother",
      "is_primary": true,
      "priority": 1,
      "can_pickup": true,
      "is_emergency_contact": true,
      "link_id": "770e8400-e29b-41d4-a716-446655440002",
      "created_at": "2024-01-15T10:30:00Z"
    },
    {
      "id": "660e8400-e29b-41d4-a716-446655440003",
      "document_type": "CC",
      "document_number": "87654321",
      "full_name": "Carlos Pérez",
      "phone": "+57 300 7654321",
      "email": "[email protected]",
      "address": "Calle 123 #45-67",
      "occupation": "Arquitecto",
      "workplace": "Design Studio",
      "is_active": true,
      "relationship": "Father",
      "is_primary": false,
      "priority": 2,
      "can_pickup": true,
      "is_emergency_contact": true,
      "link_id": "770e8400-e29b-41d4-a716-446655440004",
      "created_at": "2024-01-15T10:30:00Z"
    }
  ],
  "created_at": "2024-01-15T10:30:00Z",
  "updated_at": "2024-02-20T14:45:00Z"
}

Build docs developers (and LLMs) love