API Overview

Introduction to the Neura Market API for developers.

Overview

The Neura Market API allows developers to programmatically interact with the marketplace. You can:

  • Browse and search workflow listings
  • Retrieve product details and metadata
  • Access directory content (prompts, rules, agents, MCPs)
  • Track analytics and performance data

The API follows RESTful conventions and returns JSON responses.

Base URL

All API requests are made to:

https://www.neura.market/api/

Endpoints are organized by resource type (e.g., /api/workflows, /api/directories).

Rate Limiting

API requests are rate-limited to ensure fair usage:

  • Anonymous requests: 60 requests per minute.
  • Authenticated requests: 300 requests per minute.

Rate limit headers are included in every response:

  • X-RateLimit-Limit: Maximum requests per window.
  • X-RateLimit-Remaining: Requests remaining in current window.
  • X-RateLimit-Reset: Unix timestamp when the window resets.

If you exceed the rate limit, you'll receive a 429 Too Many Requests response.