Developer Opportunity Aggregator API
  1. Authentication
Developer Opportunity Aggregator API
  • Developers
    • Register a new developer
      POST
    • Get developer profile
      GET
    • Update developer profile
      PUT
  • Opportunities
    • Search opportunities
      GET
    • Get opportunity details
      GET
    • Get matched opportunities for developer
      GET
  • Admin
    • Bulk ingest opportunities
      POST
    • Seed sample opportunities
      POST
    • Sync opportunities from external data sources
      POST
  • Analytics
    • Track developer action
      POST
    • Get top opportunities
      GET
  • Authentication
    • Generate API key
      POST
    • List API keys for developer
      GET
    • Revoke API key
      DELETE
  • Schemas
    • DeveloperRegistration
    • DeveloperCreatedResponse
    • Developer
    • DeveloperUpdate
    • UpdateResponse
    • Opportunity
    • SearchResponse
    • MatchingResponse
    • BulkIngestRequest
    • BulkIngestResponse
    • TrackRequest
    • GenerateKeyRequest
    • ApiKeyResponse
    • SyncSourcesRequest
    • SyncSourcesResponse
    • SyncSourceResult
  1. Authentication

Generate API key

POST
/auth_generate_key
Authentication
Last modified:2025-12-11 14:25:59

Request

Body Params application/jsonRequired

Examples

Responses

🟢201
application/json
API key created
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1/auth_generate_key' \
--header 'Content-Type: application/json' \
--data-raw '{
    "name": "string",
    "rate_limit": 100,
    "developer_id": "753a058d-0712-4460-bc37-34ff02767a70"
}'
Response Response Example
{
    "success": true,
    "api_key": "string",
    "id": "string",
    "name": "string",
    "rate_limit": 0,
    "message": "string"
}
Modified at 2025-12-11 14:25:59
Previous
Get top opportunities
Next
List API keys for developer
Built with