Skip to main content

GoPrompt.ai API

Integrate GoPrompt.ai with your applications and workflows

API Overview
Getting started with the GoPrompt.ai API

The GoPrompt.ai API provides programmatic access to your prompt libraries, templates, and other resources. Use our RESTful endpoints to create, read, update, and delete resources, as well as perform advanced operations.

Base URL

https://api.goprompt.ai/v1

Response Format

All API responses are returned in JSON format. Successful responses include a data field containing the requested information. Error responses include an error field with details.

Example Response

{
  "data": {
    "id": "prompt_123",
    "title": "Product Description Generator",
    "content": "Create a compelling product description for...",
    "category": "Marketing",
    "tags": ["ecommerce", "copywriting"],
    "created_at": "2023-06-15T10:30:00Z",
    "updated_at": "2023-06-15T10:30:00Z"
  }
}
Rate Limits

API requests are subject to rate limiting based on your plan.

PlanRequests/min
Free60
Pro300
Enterprise1000+
Error Codes

The API uses standard HTTP status codes to indicate success or failure.

CodeDescription
200Success
400Bad Request
401Unauthorized
404Not Found
429Too Many Requests