Skip to main content
GET
/
ms
/
v1
/
endpoints
/
{splat}
Endpoint detail (input_schema, output_schema, examples)
curl --request GET \
  --url https://api.mountsea.ai/ms/v1/endpoints/{splat} \
  --header 'Authorization: Bearer <token>'
{
  "slug": "<string>",
  "product_model": "<string>",
  "mode": "<string>",
  "variant": "<string>",
  "display_name": "<string>",
  "cover_image": "<string>",
  "description": "<string>",
  "tags": [
    "<string>"
  ],
  "status": "<string>",
  "input_schema": {},
  "output_schema": {},
  "examples": [
    {}
  ]
}
Fetch one marketplace endpoint by slug to inspect its input_schema, output_schema, and examples. Use this before submitting a task when you need the latest required fields, supported enum values, media URL fields, or example payloads for a specific model endpoint.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

Endpoint detail with schemas and examples

slug
string
product_model
string
capability
enum<string>
Available options:
image,
video,
audio
mode
string
variant
string | null
display_name
string
cover_image
string | null
description
string | null
tags
string[]
status
string
input_schema
object
output_schema
object
examples
object[]