🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

@nimblebrain/api-spec

Package Overview
Dependencies
Maintainers
1
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@nimblebrain/api-spec

API Specification for NimbleBrain

npmnpm
Version
0.3.5
Version published
Weekly downloads
64
814.29%
Maintainers
1
Weekly downloads
 
Created
Source

NimbleBrain API Specification

This repository contains the OpenAPI specification for the NimbleBrain API, generated from TypeScript and Zod schemas. It provides a comprehensive documentation of all available endpoints, request/response schemas, and authentication requirements.

🚀 Features

  • OpenAPI 3.0.0 specification
  • Type-safe schema definitions using Zod
  • Automatic SwaggerUI generation
  • Bearer token authentication
  • Detailed request/response examples
  • Built with TypeScript
  • Pagination support
  • Error handling standardization

📖 API Documentation

The API documentation is available at: https://developer.nimblebrain.ai/

🔑 Authentication

All endpoints require authentication using a Bearer token. To authenticate:

  • Include an Authorization header with your requests
  • Format: Authorization: Bearer [your_jwt_token]

🛠️ Available Endpoints

Conversations

Agents

  • GET /agents - List all agents (paginated)
  • GET /agents/:agentId - Get a specific agent

Conversations

  • GET /agents/:agentId/conversations - List agent conversations (paginated)
  • POST /agents/:agentId/conversations - Create a new conversation
  • GET /agents/:agentId/conversations/:conversationId - Get conversation details
  • DELETE /agents/:agentId/conversations/:conversationId - Delete a conversation

Messages

  • GET /agents/:agentId/conversations/:conversationId/messages - List conversation messages (paginated)
  • POST /agents/:agentId/conversations/:conversationId/messages - Add a message to a conversation

Response formats

All API endpoints follow a consistent response format:

🛠️ Standard Response

{
  "data": T | null,
  "error": {
    "id": string,
    "errorCode": string,
    "message": string,
    "details"?: object,
    "timestamp": string
  } | null
}

Paginated Response

{
  "data": {
    "items": T[],
    "page": number,
    "limit": number,
    "total": number
  } | null,
  "error": {
    "id": string,
    "errorCode": string,
    "message": string,
    "details"?: object,
    "timestamp": string
  } | null
}

💻 Local Development

Prerequisites

  • Node.js (v20 or later)
  • npm (or yarn)

Setup

  • Clone the repository:
git clone https://github.com/NimbleBrainInc/nimblebrain-api-spec.git
cd nimblebrain-api-spec
  • Install dependencies:
npm install
  • Generate documentation:
npm run generate-docs
  • Start local server:
npm start

The SwaggerUI will be available at http://localhost:9000

Project Structure

src/
├── schemas/                  # Zod schema definitions
│   ├── zodSetup.ts           # Zod configuration
│   ├── agent.schema.ts       # Agent schemas
│   ├── conversation.schema.ts
│   ├── message.schema.ts
│   ├── pagination.schema.ts
│   ├── responses.schema.ts   # API response schemas
│   └── route-params.schema.ts
├── routes/                   # API route definitions
│   ├── agents/
│   │   └── index.ts
│   ├── conversations/
│   │   └── index.ts
│   └── common.ts             # Common route types & error responses
└── generateDocs.ts           # Documentation generator

🔄 Publishing Updates

  • Make changes to the schemas or routes
  • Run npm run generate-docs to regenerate the documentation
  • Run npm start and confirm your changes are correct
  • Release new version
npm run release:patch  # For bug fixes
npm run release:minor  # For new features
npm run release:major  # For breaking changes

🤝 Contributing

  • Fork the repository
  • Create your feature branch (git checkout -b feature/amazing-feature)
  • Commit your changes (git commit -m 'Add some amazing feature')
  • Push to the branch (git push origin feature/amazing-feature)
  • Open a Pull Request

📝 License

This project is licensed under the MIT License - see the LICENSE file for details.

📮 Support

For support, please reach out to our team at support@nimblebrain.ai

FAQs

Package last updated on 29 Jan 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts