Core
  1. Students
Core
  • Introduction
    • What is Core
    • HTTP Statuses
    • Request
    • Responses
    • Meta
    • Limit & Pagination
    • Query Parameters
  • Quick Start
    • Letters
  • Auth
    • Sign In with Email and Password
      POST
    • Get the Current Session
      GET
    • Sign Out the Current User
      POST
  • Users
    • Get All Users
      GET
    • Create a User
      POST
    • Retrieve an Existing User
      GET
    • Delete an Existing User
      DELETE
    • Update an Existing User
      PATCH
    • Get Current User
      GET
    • Update Current User
      PATCH
    • Get Current User Devices
      GET
    • Retrieve User Devices by User ID
      GET
    • Update Own Profile Image
      POST
    • Update User Image
      POST
    • Reset User Password
      PATCH
    • Get User Login History
      GET
  • Staff
    • Get All Staff
    • Retrieve an Existing Staff
    • Create a Staff
    • Delete an Existing Staff
    • Update an Existing Staff
  • Teachers
    • Get All Teachers
    • Retrieve an Existing Teacher
    • Create a Teacher
    • Delete an Existing Teacher
    • Update an Existing Teacher
  • Students
    • Get All Students
      GET
    • Retrieve an Existing Student
      GET
    • Create a Student
      POST
    • Delete an Existing Student
      DELETE
    • Update an Existing Student
      PATCH
    • Import Bulk Students
      POST
  • Roles
    • Get All Roles
    • Create a Role
    • Retrieve an Existing Role
    • Update an Existing Role
    • Delete an Existing Role
    • Get All Eligible Users for Role
    • Get All Members of Role
    • Add Bulk Member to Role
    • Remove Bulk Members from Role
  • Classes
    • Get All Classes
    • Create a Class
    • Delete an Existing Student Copy
    • Create a Class Copy
  • Statistics
    • Teachers
      • Get Teacher Gender Stats
      • Get Teacher Religion Distribution
      • Get Teacher Employment Stats
      • Get Teacher Age Stats
    • Students
      • Get Student Gender Stats
      • Get Student Religion Distribution
      • Get Student Weight Stats
      • Get Student Height Stats
      • Get Student Age Stats
      • Get Student Transportation Stats
      • Get Student Class Stats
    • Staffs
      • Get Staffs Gender Stats
      • Get Staffs Religion Distribution
      • Get Staffs Age Stats
      • Get Staffs Employment Stats
    • Users
      • Retrieve User Summary
    • Get All Stats
  • Letters
    • Get All Letters
    • Retrieve an Existing Letter
    • Create a Letter
    • List User Letter
    • List Current User Letter
    • List Recipients
  • Letter Actions
    • Initiate a Letter Action
  • Files
    • Create a Presigned URL
  • Schemas
    • Schemas
      • Letter
        • LetterHistory
        • LetterStatus
        • LetterType
      • User
        • UserProfile
      • Address
      • Meta
      • Base
      • bloodType
      • Religion
      • Gender
      • ParentInfo
      • Error
      • GenderStats
      • ReligionDistribution
      • WeightStats
      • HeightStats
      • AgeStats
      • TransportationStats
      • ClassStats
      • EducationHistoryObject
      • EmploymentStats
      • Location
      • EconomyStats
      • Actor
    • Model
      • User
      • Teacher
      • Staff
      • Student
      • Letter
      • Class
      • Roles
    • LoginHistory
  1. Students

Retrieve an Existing Student

GET
/students/{student_id}
To show information about an individual Student.

Request

Path Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://sims.sman1samarinda.sch.id/api/students/c1f172b62bb946dae3e5dc3f'

Responses

🟢200OK
application/json
Body

Example
{
    "success": true,
    "message": "OK.",
    "meta": {
        "page": 68,
        "limit": 81,
        "total": 4321
    },
    "errors": [],
    "result": {
        "id": "bdf8a9def0f6643a2bf63ffd",
        "nisn": "0011730411",
        "nipd": "12345",
        "nik": "8560151037910284",
        "skhun": "IX-A-12345-2021-123",
        "birthCertificateNumber": "3578-LU-28112012-0018",
        "familyCardNumber": "3705389610966421",
        "father": null,
        "mother": {
            "name": "Hidayanto Cakrawala",
            "nik": "4888540391249454",
            "birthPlace": "Sigi Biromaru",
            "birthDate": "2026-01-29T08:38:29.259Z",
            "education": "S1",
            "phone": "6281234567890",
            "occupation": "Principal Operations Coordinator",
            "income": "Lebih dari Rp. 20,000,000",
            "specialNeeds": [
                "NETRA",
                "GRAHITA RINGAN"
            ]
        },
        "guardian": null,
        "residenceType": "KOST",
        "transportationMode": "MOBIL PRIBADI",
        "height": 144,
        "weight": 37,
        "headCircumference": 61,
        "distance": 87047,
        "travelTime": 102,
        "siblings": 2,
        "numberOfSiblings": 2,
        "phone": "6281234567890",
        "religion": null,
        "address": {
            "street": "Jl. Beruang",
            "rt": "061",
            "rw": "070",
            "subDistrict": "Sempaja Utara",
            "district": "Samarinda Utara",
            "city": "Samarinda",
            "province": "Kalimantan Timur",
            "country": "ID",
            "postalCode": "75124",
            "location": {
                "type": "POINT",
                "coordinates": [
                    3,
                    7
                ]
            }
        },
        "birthDate": "2026-01-29T08:38:29.264Z",
        "birthPlace": "Cikampek",
        "birthOrder": 1,
        "bloodType": null,
        "gender": "FEMALE",
        "landline": "0541123456",
        "hobby": "Membaca",
        "dream": "magna officia et sunt in",
        "specialNeeds": [
            "RUNGU"
        ],
        "user": {
            "id": "68f44e907ede1684986ca3ef",
            "name": "Fauzan Gifari",
            "email": "00001@sekolah.sch.id",
            "image": "core/profile/1768059805474-fd700a5ea560fe3d/alfrdzley.jpeg",
            "active": true
        },
        "class": {
            "id": "0ff0fafad812abe35e4b8150",
            "name": "X-1",
            "grade": 10,
            "academicYear": "2025/2026"
        }
    }
}
🟠401Unauthorized
🟠403Forbidden
🟠404Record Not Found
🔴500Server Error
Modified at 2026-01-12 07:15:52
Previous
Get All Students
Next
Create a Student
Built with