Skip to main content
GET
GET /v1/storedProcedures

List Stored Procedures

List all stored procedures with optional filtering and pagination.

Query Parameters

databaseSchema
string
Filter by database schema fully qualified name.
database
string
Filter by database fully qualified name.
limit
integer
default:"10"
Maximum number of results to return (max: 1000000).
before
string
Cursor for backward pagination.
after
string
Cursor for forward pagination.
fields
string
Comma-separated list of fields to include: owners, tags, followers, votes, extension, domains, sourceHash. See Supported Fields below.
include
string
default:"non-deleted"
Include all, deleted, or non-deleted entities.
GET /v1/storedProcedures

Returns

Returns a paginated list of stored procedure objects. By default, only basic fields are included. Use the fields parameter to request additional data.

Response

data
array
Array of stored procedure objects.
paging
object
Pagination information.

Supported Fields

The following fields can be requested via the fields query parameter:
FieldDescription
ownersOwner references (users and teams)
tagsClassification tags
followersUsers following the stored procedure
votesUser votes and ratings
extensionCustom property values
domainsDomain assignments for governance
sourceHashHash for change detection

Error Handling

CodeError TypeDescription
401UNAUTHORIZEDInvalid or missing authentication token
403FORBIDDENUser lacks permission to list stored procedures