For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
    • Welcome
  • API Reference
      • GETListar Esquemas de Salida Estructurada
      • POSTCrear Esquema
      • GETObtener Esquema
      • DELEliminar Esquema
      • PATCHActualizar Esquema
Logo
API ReferenceStructured Output

Obtener Esquema

GET
https://nebrijaai.com/api/v1/schemas/:id
GET
/api/v1/schemas/:id
$curl https://nebrijaai.com/api/v1/schemas/id \
> -H "Authorization: Bearer <token>" \
> -H "Content-Type: application/json"
1{
2 "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
3 "name": "Customer Support Call Schema",
4 "type": "Summary",
5 "description": "Schema to extract key summary points from customer support calls.",
6 "properties": {
7 "callDuration": "integer",
8 "customerSatisfaction": "string",
9 "issueResolved": "boolean"
10 },
11 "isLocked": false,
12 "createdAt": "2024-01-15T09:30:00Z",
13 "updatedAt": "2024-04-10T11:45:00Z"
14}
Was this page helpful?
Previous

Eliminar Esquema

Next
Built with

Authentication

AuthorizationBearer

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

Path parameters

idstringRequiredformat: "uuid"

Response

Detalles del esquema.

Errors

404
Not Found Error