GET /v1/models
Get a list of all available models.
Endpoint
GET https://api.nascentist.ai/v1/modelsRequest
Headers
Authorization: Bearer YOUR_API_KEYResponse
{
"object": "list",
"data": [
{
"id": "nascentist-1",
"object": "model",
"created": 1704067200,
"name": "Nascentist 1",
"description": "Primary model. Best accuracy for code completion and agentic tasks.",
"status": "available",
"context_length": 8192,
"supported_endpoints": ["complete", "agent-fix", "agent-review"]
},
{
"id": "nascentist-1-fast",
"object": "model",
"created": 1704067200,
"name": "Nascentist 1 Fast",
"description": "Faster, lighter variant optimized for speed.",
"status": "coming_soon",
"context_length": 4096,
"supported_endpoints": ["complete"]
}
]
}Response fields
- id — Unique model identifier
- name — Human-readable model name
- description — Brief description of the model
- status — Current status: available, coming_soon, deprecated
- context_length — Maximum context length in tokens
- supported_endpoints — List of supported API endpoints