Skip to main content
Get details of a specific project by ID or slug

Tool details

FieldValue
Nameget_project
GroupProjects

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "project_reference": {
      "type": "string",
      "description": "Project ID or slug"
    }
  },
  "required": [
    "project_reference"
  ],
  "additionalProperties": false,
  "description": "Input schema for the get_project tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the returned record."
    },
    "name": {
      "type": "string",
      "description": "Human-readable name for the returned record."
    },
    "slug": {
      "type": "string",
      "description": "The slug associated with this tool result."
    },
    "is_claimed": {
      "type": "boolean",
      "description": "The is claimed associated with this tool result."
    },
    "created_at": {
      "type": "string",
      "description": "Creation timestamp in ISO 8601 format."
    },
    "updated_at": {
      "type": "string",
      "description": "Last update timestamp in ISO 8601 format."
    }
  },
  "required": [
    "id",
    "name",
    "slug",
    "is_claimed"
  ],
  "additionalProperties": false,
  "description": "One data item associated with this tool result.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}