Retrieve Project Config
This endpoint retrieves the current project settings and configuration details.
Authorizations
Responses
200
Successfully returned the current project settings.
application/json
401
Unauthorized – Missing or invalid token.
application/json
403
Forbidden – User is not a member of this project.
application/json
404
Not Found – Project configuration not found.
application/json
500
Internal server error
get
GET /api/v1/project-configs HTTP/1.1
Host: api.cortecs.ai
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"_id": "b18d37d09d58d5abc123",
"project_id": "org_WLH",
"inference_config": {
"allowed_providers": [
"scaleway"
],
"blacklisted_models": [
"gpt-5",
"llama-3.1-8b-instruct"
],
"eu_native": false
},
"active": true,
"allow_overwrite": false,
"created_at": "2025-09-26T07:39:03.672Z",
"updated_at": "2025-09-26T07:39:03.672Z",
"schema_version": "v1"
}
Last updated