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

Sync opportunities from external data sources

POST
/admin_sync_sources
Admin
Last modified:2025-12-11 14:26:00
Triggers synchronization from configured external data sources (DEV.to and RemoteOK). Returns results for each source including counts and any errors encountered.

Request

Body Params application/json

Examples

Responses

🟢200
application/json
Sync completed (may include partial failures)
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://xmsx-hkkx-nz6p.n7e.xano.io/api:v1/admin_sync_sources' \
--header 'Content-Type: application/json' \
--data-raw '{
    "source": "all",
    "devto_tag": "hackathon",
    "limit": 30
}'
Response Response Example
{
    "success": true,
    "sources_synced": 0,
    "total_ingested": 0,
    "results": [
        {
            "source": "dev_community",
            "articles_found": 0,
            "jobs_found": 0,
            "ingested_count": 0,
            "error": "string"
        }
    ],
    "message": "string"
}
Modified at 2025-12-11 14:26:00
Previous
Seed sample opportunities
Next
Track developer action
Built with