Developer Opportunity Aggregator API
  1. Opportunities
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. Opportunities

Search opportunities

GET
/opportunities_search
Opportunities
Last modified:2025-12-11 14:25:59
Search and filter opportunities with optional smart matching when developer_id is provided

Request

Query Params

Responses

🟢200
application/json
Search results
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1/opportunities_search?type&skills&experience_level&location&remote_only&sort_by&limit&offset&developer_id'
Response Response Example
{
    "success": true,
    "total_count": 0,
    "returned_count": 0,
    "offset": 0,
    "opportunities": [
        {
            "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
            "title": "string",
            "type": "hackathon",
            "description": "string",
            "required_skills": [
                "string"
            ],
            "experience_level_required": "string",
            "category": [
                "string"
            ],
            "location": "string",
            "remote_eligible": true,
            "deadline": 0,
            "prize_pool": 0,
            "application_url": "string",
            "source": "string",
            "view_count": 0,
            "created_at": 0
        }
    ]
}
Modified at 2025-12-11 14:25:59
Previous
Update developer profile
Next
Get opportunity details
Built with