# Get output specs for ProcessAPI package

## Get the output specifications for the supplied process\_id, the actual results in the returned JSON are dummy values

<mark style="color:blue;">`GET`</mark> `https://api.olisystems.com/process/outputspec/{{process_id}}`

#### Headers

| Name                                            | Type   | Description            |
| ----------------------------------------------- | ------ | ---------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer {access\_token} |

{% tabs %}
{% tab title="200: OK " %}

```json
{
	"data": {
		"context": "solution",
		"flowsheetConvergence": true,
		"metadata": {
			"executionTime": {
				"unit": "ms",
				"value": 41.0
			},
			"versionInfo": {
				"fullVersion": "11.5.1.7"
			}
		},
		"output": {
			"blockOutput": {
				"Mix-1": {
					...                    
				}
				...
			}
			"streamOutput": {
				"S-1": {
					...
				},
				...
			}
		}
	},
	"message": "Process output specification retrieved successfully",
	"status": "SUCCESS"
}
```

{% endtab %}
{% endtabs %}
