---
title: "GET /blueprints/{guid} - Blueprints · RUAL Documentation"
description: "Get blueprint by GUID or short_id with Redis caching and permission checks"
canonical: https://docs.rual.nl/cluster/api/blueprints/blueprints--guid-get
language: en
---

# GET /blueprints/{guid}

Get blueprint by GUID or short_id with Redis caching and permission checks

| Key | Type | Example | Description |
| --- | --- | --- | --- |
| **guid** required | `string` | `"example"` | Blueprint GUID or short_id |

| Key | Type | Example | Description |
| --- | --- | --- | --- |
| **production** optional | `boolean` | `true` | Get from production blueprints instead of development |

| Key | Type | Example | Description |
| --- | --- | --- | --- |
| **[authorization](https://docs.rual.nl/cluster/api#token-providing)** required | `string` | `"Bearer access_token"` | Access token |

```
{
  "_meta": {
    "created": 1782166695,
    "entity": 1,
    "guid": "a23575f49d0af385314c1f02280163374297e018a692e5e4ab85eb307ebf6ebc",
    "modified": 1782166695,
    "updated": 1782166695
  },
  "actions": [
    {}
  ],
  "category": "authentication",
  "created_by_user_guid": "a23575f49d0af385314c1f02280163374297e018a692e5e4ab85eb307ebf6ebc",
  "description": "Automates user registration with email verification and profile setup",
  "is_published": false,
  "last_modified_by_user_guid": "a23575f49d0af385314c1f02280163374297e018a692e5e4ab85eb307ebf6ebc",
  "name": "User Registration Workflow",
  "permissions": {
    "edit": [
      "example"
    ],
    "execute": [
      "example"
    ],
    "view": [
      "example"
    ]
  },
  "settings": {
    "auto_retry": false,
    "max_retries": 3,
    "parallel_execution": false,
    "timeout": 300000
  },
  "short_id": "TpQ8K3mN9xVz",
  "statistics": {
    "average_duration": 12.5,
    "failed_executions": 0,
    "last_execution": 1782166695,
    "successful_executions": 0,
    "total_executions": 0
  }
}
```

```
{
  "error": "INSUFFICIENT_PERMISSIONS"
}
```

| Status | Error Code | Description |
| --- | --- | --- |
| `401` | `INSUFFICIENT_PERMISSIONS` | Insufficient permissions or authentication required |
| `404` | `ERROR` | Blueprint not found |

| Permission | Description |
| --- | --- |
| `Bearer token` | Access token required via Authorization header, x-authtoken, x-token, query param, or cookie |
| `blueprints_view` | Required scope: blueprints_view |
