{"id":51005320,"url":"https://github.com/interopio/fdc-appd","last_synced_at":"2026-06-20T20:01:55.547Z","repository":{"id":64567269,"uuid":"154333445","full_name":"InteropIO/fdc-appd","owner":"InteropIO","description":"FDC3 application directory web service demo","archived":false,"fork":false,"pushed_at":"2022-12-10T17:11:56.000Z","size":59,"stargazers_count":2,"open_issues_count":2,"forks_count":0,"subscribers_count":9,"default_branch":"master","last_synced_at":"2023-06-29T15:39:55.970Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/InteropIO.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-10-23T13:31:33.000Z","updated_at":"2023-06-27T13:46:23.000Z","dependencies_parsed_at":"2022-12-10T19:21:57.572Z","dependency_job_id":null,"html_url":"https://github.com/InteropIO/fdc-appd","commit_stats":null,"previous_names":["interopio/fdc-appd"],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/InteropIO/fdc-appd","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InteropIO%2Ffdc-appd","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InteropIO%2Ffdc-appd/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InteropIO%2Ffdc-appd/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InteropIO%2Ffdc-appd/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/InteropIO","download_url":"https://codeload.github.com/InteropIO/fdc-appd/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/InteropIO%2Ffdc-appd/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34583589,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-06-20T20:01:51.521Z","updated_at":"2026-06-20T20:01:55.529Z","avatar_url":"https://github.com/InteropIO.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FDC3 Application Directory Web Service\n\nA very basic example of a FDC3 application directory web service. It is implemented as a tiny express web server that listens on defined port and exposes three different restful end points. There is currently no database but a single json file (data.json) to retrieve applications data from.\n\n## Finsemble Component Manifest\n\nThe format of the 'manifest' field is one that Finsemble should be able to parse. It should feature the same format of a UI component from Finsemble-seed's [UIComponents.json](https://github.com/ChartIQ/finsemble-seed/blob/master/configs/application/UIComponents.json) \n\n\n**Locally it runs on port 3030**\n### Install and run the server\n```\ngit clone git@github.com:ChartIQ/fdc-appd.git\ncd fdc-appd\nnpm install\nnpm start\n```\n\n## API Resources\n\n- [GET /v1/apps/](#get-all-apps) - This call fetches all apps in the catalog.\n- [GET /v1/apps/{appId}](#get-a-single-app) - This call fetches information for a single application specified by an `appId`.\n- [GET /v1/tags](#get-all-tags) - Returns an array of all t`ags`.\n- [POST /v1/apps/search](#search-apps) - Searches the list of application given a set of parameters.\n\n### Get all apps\nGET http:/localhost/v1/apps/search\n\nStatus code: 200\n```\n{\n  \"applications\": [{...}],\n  \"message\": \"successful\"\n}\n```\n\n### Get all tags\nGET http:/localhost/v1/tags\n\nStatus code: 200\n```\n{\n  \"tags\": ['newrelease', 'pizza'],\n  \"message\": \"successful\"\n}\n```\n\n\n### Get a single app\nExample: GET http:/localhost/v1/apps/xapp\n\nStatus code: 200\n```\n{\n  \"applications\": [\n    {\n      \"appId\": \"xapp\",\n      ...\n    }\n  ],\n  \"message\": \"successful\"\n}\n```\n\n### Search apps\nPOST http:/localhost/v1/apps/search\n\nContent-Type: application/json\n\nBody: {\n    \"text\": \"\",\n    \"tags\": [\"death\", \"Success\"]\n}\n\nStatus code: 200\n```\n{\n  \"applications\": [\n    {\n      \"appId\": \"xapp\",\n      ...\n    }\n  ],\n  \"message\": \"successful\"\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finteropio%2Ffdc-appd","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Finteropio%2Ffdc-appd","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Finteropio%2Ffdc-appd/lists"}