- Operation Portal
- Auth
- Role and Permission
- Global data
- Merchant
- wallet
- Common API
- Device Map
- Back office
- Auth
- Institute
- Payments
- admission
- Global data
- Modules/submodules/features
- Packages
- General Config
- Institute Portal
- Auth
- Fees Management
- HR Management
- Student Management
- Master Settings
- Role and Permission
- Open Portal
- Admission
- Common API
- SMS
- Subject Config
- Shared API
- Admission User Portal
- SPG Server end test
- Public Api
- Payment Portal
- Dont Exec
global-subject-list
Developing
GET
/api/subject-setup-data
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Request 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://apidev.edufee.online/api/subject-setup-data'
Responses
🟢200Success
application/json
Body
object {0}
Example
{
"errors": null,
"message": "Success",
"status_code": 200,
"payload": {
"data": {
"subjectList": [
{
"id": 1,
"subject_name": "Bangla",
"subject_code": "101"
},
{
"id": 2,
"subject_name": "Bangla 1st",
"subject_code": "102"
},
{
"id": 3,
"subject_name": "Bangla 2nd",
"subject_code": "103"
},
{
"id": 4,
"subject_name": "English",
"subject_code": "104"
},
{
"id": 5,
"subject_name": "English 1st",
"subject_code": "105"
},
{
"id": 6,
"subject_name": "English 2nd",
"subject_code": "106"
},
{
"id": 7,
"subject_name": "Mathematics",
"subject_code": "107"
},
{
"id": 8,
"subject_name": "Phygics",
"subject_code": "108"
},
{
"id": 9,
"subject_name": "Biology",
"subject_code": "109"
},
{
"id": 10,
"subject_name": "Chemistry",
"subject_code": "110"
}
],
"institute_subject": [
{
"id": 1,
"institute_details_id": 1,
"subject_id": 1,
"subject_name": "Bangla",
"subject_code": "101",
"created_at": "2025-04-26T03:43:06.000000Z",
"updated_at": "2025-04-26T03:43:06.000000Z"
},
{
"id": 2,
"institute_details_id": 1,
"subject_id": 2,
"subject_name": "Bangla 1st",
"subject_code": "102",
"created_at": "2025-04-26T03:43:06.000000Z",
"updated_at": "2025-04-26T03:43:06.000000Z"
},
{
"id": 3,
"institute_details_id": 1,
"subject_id": 3,
"subject_name": "Bangla 2nd",
"subject_code": "103",
"created_at": "2025-04-26T03:43:19.000000Z",
"updated_at": "2025-04-26T03:43:19.000000Z"
}
],
"institute_subject_config": []
}
}
}