Fetch Survey Run
Retrieve a single survey run by its UUID. This returns the same data as the list endpoint but filtered to one specific run — useful when you already know which run you need.
GET/api/v1/designs/{designid}/survey-runs/{surveyrunid}
Fetch a specific survey run by UUID
Path Parameters
| Name | Type | Required | Description |
|---|---|---|---|
designid | string (UUID) | ✓ | The UUID of the design |
surveyrunid | string (UUID) | ✓ | The UUID of the survey run |
Headers
| Name | Value | Description |
|---|---|---|
apikey | YOUR_API_KEY | Your API authentication key |
Response fields
| Field | Type | Description |
|---|---|---|
uuid | string | Unique identifier of the survey run |
name | string | Display name |
tieOnType | "surface" or "run" | How this run connects to the wellbore |
tieOnDepth | string | Tie-on depth in pipe-delimited format |
tieOnRunUUID | string or null | UUID of the parent run (if tie-on type is "run") |
surveyTool | string | Survey tool / error model name |
points | object | Computed survey points with headers and values |
Notes
- Returns the same data structure as the list endpoint, but filtered to a single run
- Useful for refreshing data after an edit, or when building a detail view for one specific run