Introduction

API documentation and integration guides for meinGPT

Welcome to the meinGPT Developer Guide. With the meinGPT API, you can safely and easily build your own applications with AI, without needing additional accounts and services. Additionally, many of the powerful features from the platform, such as assistants and workflows, are also available in the API.

API Overview

The meinGPT API provides programmatic access to:

Quick Start

Generate an API token in your meinGPT settings

In your meinGPT settings, open "meinGPT API" to create an API key.

Execute API request

Use the generated API key as a Bearer token in the Authorization header

curl -X POST "http://localhost:3000/api/openai/v1/chat/completions" \
-H "Authorization: " \
-H "Content-Type: application/json" \
-d '{
  "messages": [
    {"role": "user", "content": "Hello, meinGPT!"}
  ],
  "model": "gpt-4o-mini"
}'

Rate Limits

API requests are subject to the following limitations:

  • Standard Tier: 100 requests per minute
  • Enterprise Tier: Individual limits

Support

If you need help with the API, contact us at support@meingpt.com or submit a request through our support portal.

Best Practices

  • Always handle errors properly
  • Implement exponential backoff for retries
  • Cache responses when appropriate
  • Monitor your usage to avoid limits
Was this page helpful?