For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://modelgates.ai/docs/_mcp/server.
Create a workspace
POST https://modelgates.ai/api/v1/workspaces Content-Type: application/json
Create a new workspace for the authenticated user. Management key required.
Reference: https://modelgates.ai/docs/api/api-reference/workspaces/create-workspace
OpenAPI Specification
yaml
openapi: 3.1.0info: title: ModelGates API version: 1.0.0paths: /workspaces: post: operationId: create-workspace summary: Create a workspace description: >- Create a new workspace for the authenticated user. [Management key](/docs/guides/overview/auth/management-api-keys) required. tags: - subpackage_workspaces parameters: - name: Authorization in: header description: API key as bearer token in Authorization header required: true schema: type: string responses: '201': description: Workspace created successfully content: application/json: schema: $ref: '#/components/schemas/CreateWorkspaceResponse' '400': description: Bad Request - Invalid request parameters or malformed input content: application/json: schema: $ref: '#/components/schemas/BadRequestResponse' '401': description: Unauthorized - Authentication required or invalid credentials content: application/json: schema: $ref: '#/components/schemas/UnauthorizedResponse' '403': description: Forbidden - Authentication successful but insufficient permissions content: application/json: schema: $ref: '#/components/schemas/ForbiddenResponse' '500': description: Internal Server Error - Unexpected server error content: application/json: schema: $ref: '#/components/schemas/InternalServerResponse' requestBody: content: application/json: schema: $ref: '#/components/schemas/CreateWorkspaceRequest'servers: - url: https://modelgates.ai/api/v1components: schemas: CreateWorkspaceRequest: type: object properties: default_image_model: type: - string - 'null' description: Default image model for this workspace default_provider_sort: type: - string - 'null' description: >- Default provider sort preference (price, throughput, latency, exacto) default_text_model: type: - string - 'null' description: Default text model for this workspace description: type: - string - 'null' description: Description of the workspace io_logging_api_key_ids: type: - array - 'null' items: type: integer description: Optional array of API key IDs to filter I/O logging io_logging_sampling_rate: type: number format: double description: Sampling rate for I/O logging (0.0001-1) is_data_discount_logging_enabled: type: boolean description: Whether data discount logging is enabled is_observability_broadcast_enabled: type: boolean description: Whether broadcast is enabled is_observability_io_logging_enabled: type: boolean description: Whether private logging is enabled name: type: string description: Name for the new workspace slug: type: string description: >- URL-friendly slug (lowercase alphanumeric segments separated by single hyphens, no leading/trailing hyphens) required: - name - slug title: CreateWorkspaceRequest CreateWorkspaceResponseData: type: object properties: created_at: type: string description: ISO 8601 timestamp of when the workspace was created created_by: type: - string - 'null' description: User ID of the workspace creator default_image_model: type: - string - 'null' description: Default image model for this workspace default_provider_sort: type: - string - 'null' description: >- Default provider sort preference (price, throughput, latency, exacto) default_text_model: type: - string - 'null' description: Default text model for this workspace description: type: - string - 'null' description: Description of the workspace id: type: string format: uuid description: Unique identifier for the workspace io_logging_api_key_ids: type: - array - 'null' items: type: integer description: >- Optional array of API key IDs to filter I/O logging. Null means all keys are logged. io_logging_sampling_rate: type: number format: double description: >- Sampling rate for I/O logging (0.0001-1). 1 means 100% of requests are logged. is_data_discount_logging_enabled: type: boolean description: Whether data discount logging is enabled for this workspace is_observability_broadcast_enabled: type: boolean description: Whether broadcast is enabled for this workspace is_observability_io_logging_enabled: type: boolean description: Whether private logging is enabled for this workspace name: type: string description: Name of the workspace slug: type: string description: URL-friendly slug for the workspace updated_at: type: - string - 'null' description: ISO 8601 timestamp of when the workspace was last updated required: - created_at - created_by - default_image_model - default_provider_sort - default_text_model - description - id - io_logging_api_key_ids - io_logging_sampling_rate - is_data_discount_logging_enabled - is_observability_broadcast_enabled - is_observability_io_logging_enabled - name - slug - updated_at description: The created workspace title: CreateWorkspaceResponseData CreateWorkspaceResponse: type: object properties: data: $ref: '#/components/schemas/CreateWorkspaceResponseData' required: - data title: CreateWorkspaceResponse BadRequestResponseErrorData: type: object properties: code: type: integer message: type: string metadata: type: - object - 'null' additionalProperties: description: Any type required: - code - message description: Error data for BadRequestResponse title: BadRequestResponseErrorData BadRequestResponse: type: object properties: error: $ref: '#/components/schemas/BadRequestResponseErrorData' modelgates_metadata: type: - object - 'null' additionalProperties: description: Any type user_id: type: - string - 'null' required: - error description: Bad Request - Invalid request parameters or malformed input title: BadRequestResponse UnauthorizedResponseErrorData: type: object properties: code: type: integer message: type: string metadata: type: - object - 'null' additionalProperties: description: Any type required: - code - message description: Error data for UnauthorizedResponse title: UnauthorizedResponseErrorData UnauthorizedResponse: type: object properties: error: $ref: '#/components/schemas/UnauthorizedResponseErrorData' modelgates_metadata: type: - object - 'null' additionalProperties: description: Any type user_id: type: - string - 'null' required: - error description: Unauthorized - Authentication required or invalid credentials title: UnauthorizedResponse ForbiddenResponseErrorData: type: object properties: code: type: integer message: type: string metadata: type: - object - 'null' additionalProperties: description: Any type required: - code - message description: Error data for ForbiddenResponse title: ForbiddenResponseErrorData ForbiddenResponse: type: object properties: error: $ref: '#/components/schemas/ForbiddenResponseErrorData' modelgates_metadata: type: - object - 'null' additionalProperties: description: Any type user_id: type: - string - 'null' required: - error description: Forbidden - Authentication successful but insufficient permissions title: ForbiddenResponse InternalServerResponseErrorData: type: object properties: code: type: integer message: type: string metadata: type: - object - 'null' additionalProperties: description: Any type required: - code - message description: Error data for InternalServerResponse title: InternalServerResponseErrorData InternalServerResponse: type: object properties: error: $ref: '#/components/schemas/InternalServerResponseErrorData' modelgates_metadata: type: - object - 'null' additionalProperties: description: Any type user_id: type: - string - 'null' required: - error description: Internal Server Error - Unexpected server error title: InternalServerResponse securitySchemes: apiKey: type: http scheme: bearer description: API key as bearer token in Authorization headerSDK Code Examples
python
import requests url = "https://modelgates.ai/api/v1/workspaces" payload = { "name": "Production", "slug": "production", "default_image_model": "openai/dall-e-3", "default_provider_sort": "price", "default_text_model": "openai/gpt-4o", "description": "Production environment workspace"}headers = { "Authorization": "Bearer <token>", "Content-Type": "application/json"} response = requests.post(url, json=payload, headers=headers) print(response.json())javascript
const url = 'https://modelgates.ai/api/v1/workspaces';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"name":"Production","slug":"production","default_image_model":"openai/dall-e-3","default_provider_sort":"price","default_text_model":"openai/gpt-4o","description":"Production environment workspace"}'}; try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}go
package main import ( "fmt" "strings" "net/http" "io") func main() { url := "https://modelgates.ai/api/v1/workspaces" payload := strings.NewReader("{\n \"name\": \"Production\",\n \"slug\": \"production\",\n \"default_image_model\": \"openai/dall-e-3\",\n \"default_provider_sort\": \"price\",\n \"default_text_model\": \"openai/gpt-4o\",\n \"description\": \"Production environment workspace\"\n}") req, _ := http.NewRequest("POST", url, payload) req.Header.Add("Authorization", "Bearer <token>") req.Header.Add("Content-Type", "application/json") res, _ := http.DefaultClient.Do(req) defer res.Body.Close() body, _ := io.ReadAll(res.Body) fmt.Println(res) fmt.Println(string(body)) }ruby
require 'uri'require 'net/http' url = URI("https://modelgates.ai/api/v1/workspaces") http = Net::HTTP.new(url.host, url.port)http.use_ssl = true request = Net::HTTP::Post.new(url)request["Authorization"] = 'Bearer <token>'request["Content-Type"] = 'application/json'request.body = "{\n \"name\": \"Production\",\n \"slug\": \"production\",\n \"default_image_model\": \"openai/dall-e-3\",\n \"default_provider_sort\": \"price\",\n \"default_text_model\": \"openai/gpt-4o\",\n \"description\": \"Production environment workspace\"\n}" response = http.request(request)puts response.read_bodyjava
import com.mashape.unirest.http.HttpResponse;import com.mashape.unirest.http.Unirest; HttpResponse<String> response = Unirest.post("https://modelgates.ai/api/v1/workspaces") .header("Authorization", "Bearer <token>") .header("Content-Type", "application/json") .body("{\n \"name\": \"Production\",\n \"slug\": \"production\",\n \"default_image_model\": \"openai/dall-e-3\",\n \"default_provider_sort\": \"price\",\n \"default_text_model\": \"openai/gpt-4o\",\n \"description\": \"Production environment workspace\"\n}") .asString();php
<?phprequire_once('vendor/autoload.php'); $client = new \GuzzleHttp\Client(); $response = $client->request('POST', 'https://modelgates.ai/api/v1/workspaces', [ 'body' => '{ "name": "Production", "slug": "production", "default_image_model": "openai/dall-e-3", "default_provider_sort": "price", "default_text_model": "openai/gpt-4o", "description": "Production environment workspace"}', 'headers' => [ 'Authorization' => 'Bearer <token>', 'Content-Type' => 'application/json', ],]); echo $response->getBody();csharp
using RestSharp; var client = new RestClient("https://modelgates.ai/api/v1/workspaces");var request = new RestRequest(Method.POST);request.AddHeader("Authorization", "Bearer <token>");request.AddHeader("Content-Type", "application/json");request.AddParameter("application/json", "{\n \"name\": \"Production\",\n \"slug\": \"production\",\n \"default_image_model\": \"openai/dall-e-3\",\n \"default_provider_sort\": \"price\",\n \"default_text_model\": \"openai/gpt-4o\",\n \"description\": \"Production environment workspace\"\n}", ParameterType.RequestBody);IRestResponse response = client.Execute(request);swift
import Foundation let headers = [ "Authorization": "Bearer <token>", "Content-Type": "application/json"]let parameters = [ "name": "Production", "slug": "production", "default_image_model": "openai/dall-e-3", "default_provider_sort": "price", "default_text_model": "openai/gpt-4o", "description": "Production environment workspace"] as [String : Any] let postData = JSONSerialization.data(withJSONObject: parameters, options: []) let request = NSMutableURLRequest(url: NSURL(string: "https://modelgates.ai/api/v1/workspaces")! as URL, cachePolicy: .useProtocolCachePolicy, timeoutInterval: 10.0)request.httpMethod = "POST"request.allHTTPHeaderFields = headersrequest.httpBody = postData as Data let session = URLSession.sharedlet dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in if (error != nil) { print(error as Any) } else { let httpResponse = response as? HTTPURLResponse print(httpResponse) }}) dataTask.resume()