# Here is a curl example
curl \
X GET -H "Authorization:{token}" http://localhost:8888/api/Objects/Modules
This method gets all system modules, e.g. Processes, Projects, etc.
To get the modules, you need to make a GET call to the following url :
http://localhost:8888/api/Objects/Modules
Result example :
[
{
"Id": 0,
"Key": "string",
"Name": "string"
}
]
| Field | Parameter Type | Type | Description |
|---|---|---|---|
| Authorization | header | string | Add Authorization header token |