Retrieve Project Config

Retrieve Current Project Settings

get

This endpoint retrieves the current project settings and configuration details.

Authorizations
Responses
200

Successfully returned the current project settings.

application/json
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