Skip to main content
GET
/
endpoints
/
{id}
Get endpoint
curl --request GET \
  --url https://api.ziet.ai/v1/endpoints/{id} \
  --header 'Authorization: <api-key>'
{
  "id": "<string>",
  "name": "<string>",
  "description": "<string>",
  "method": "GET",
  "path": "<string>",
  "auth": true,
  "timeout": 30,
  "rate_limit": 123,
  "parameters": {},
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Format: 'Api-Key sk_live_YOUR_KEY'

Path Parameters

id
string
required

Response

Endpoint details

id
string
required

Unique endpoint identifier

name
string
required

Human-readable name

description
string
required

What the endpoint does

method
enum<string>
required

HTTP method

Available options:
GET,
POST,
PUT,
DELETE,
PATCH
path
string
required

URL path (e.g., /users/{id})

auth
boolean
default:true

Whether API key authentication is required

timeout
integer
default:30

Max execution time in seconds

rate_limit
integer

Max requests per minute

parameters
object

JSON Schema for parameters

created_at
string<date-time>
updated_at
string<date-time>