get_endpoint_schema
Understand an API endpoint's full contract—resolved URL, auth, and schema—before constructing curl commands.
Instructions
Returns the full context for a specific endpoint including resolved URL, auth requirements, and schema.
Use this to understand an endpoint before constructing a curl command to execute via the bash tool. Call this after list_endpoints to get the endpoint contract.
Auth Patterns
Auth in Schema | curl Header |
| No header |
|
|
|
|
|
|
|
|
NOTATION Legend
? optional | [ro] readOnly | [w] writeOnly | =val default
^ header | ~ cookie | *N multipleOf N | | enum or nullable
OneOf<A,B> on field = discriminated union
{*:T} = map/dict | {...} = open object | extends = allOf
& = inline extension | ~~name~~ deprecated | # = inline note
[multipart] [form] [binary] [text] = request body encoding
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| api | Yes | API name matching the .mind filename | |
| path | Yes | Endpoint path | |
| method | Yes | HTTP method (GET, POST, PUT, PATCH, DELETE) |