```json
{
"service_type": "rest_api",
"base_url": "https://orquesta.live",
"auth_method": "none",
"auth_config": {
"header": null,
"prefix": null
},
"endpoints": [
{
"path": "/api/public/feed",
"method": "GET",
"purpose": "List all public projects from the community feed with prompts, votes, and agent status",
"params": {},
"response_format": "json",
"is_primary": false
},
{
"path": "/api/public/stats",
"method": "GET",
"purpose": "Get aggregate platform statistics — total prompts executed, users, and teams",
"params": {},
"response_format": "json",
"is_primary": false
},
{
"path": "/api/oss/publish",
"method": "GET",
"purpose": "List all self-hosted OSS instances published to the Orquesta community directory",
"params": {},
"response_format": "json",
"is_primary": false
},
{
"path": "/api/public/vote",
"method": "POST",
"purpose": "Upvote or downvote a public project anonymously using a browser UUID",
"params": {
"vote": {
"type": "integer",
"required": true
},
"projectId": {
"type": "string",
"required": true
},
"voterUuid": {
"type": "string",
"required": true
}
},
"response_format": "json",
"is_primary": false
},
{
"path": "/api/public/propose",
"method": "POST",
"purpose": "Propose a prompt for a public project. Rate-limited to 3 proposals per UUID per day.",
"params": {
"content": {
"type": "string",
"required": true
},
"projectId": {
"type": "string",
"required": true
},
"proposerUuid": {
"type": "string",
"required": true
}
},
"response_format": "json",
"is_primary": false
},
{
"path": "/api/oss/publish",
"method": "POST",
"purpose": "OSS instances publish themselves to the community feed.",
"params": {
"name": {
"type": "string",
"required": true
},
"description": {
"type": "string",
"required": true
},
"instanceUrl": {
"type": "string",
"required": true
},
"promptCount": {
"type": "integer",
"required": true
}
},
"response_format": "json",
"is_primary": false
},
{
"path": "/api/contact",
"method": "POST",
"purpose": "Contact form for enterprise inquiries.",
"params": {
"name": {
"type": "string",
"required": true
},
"email": {
"type": "string",
"required": true
},
"company": {
"type": "string",
"required": true
},
"message": {
"type": "string",
"required": true
}
},
"response_format": "json",
"is_primary": false
}
],
"pricing_model": {
"type": "unknown",
"details": {},
"free_tier": null,
"paid_tiers": []
},
"rate_limits": {
"rpm": 60,
"tpm": null,
"daily": null,
"concurrent": null
},
"capabilities": [
"public_projects_feed",
"aggregate_statistics",
"self_hosted_oss_listing",
"voting_system",
"prompt_proposals",
"oss_instance_publish",
"contact_inquiries"
],
"agent_readiness": {
"supports_x402": false,
"supports_streaming": false,
"has_sandbox": false,
"sdks": [],
"agent_auth_methods": []
}
}
```