{"id":16800224,"url":"https://github.com/abiosoft/orchestra","last_synced_at":"2025-09-18T00:40:06.306Z","repository":{"id":28770648,"uuid":"32293058","full_name":"abiosoft/orchestra","owner":"abiosoft","description":"Minimalistic Orchestration Layer","archived":false,"fork":false,"pushed_at":"2015-04-14T09:36:33.000Z","size":1964,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-17T05:21:22.805Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/abiosoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-03-16T01:00:44.000Z","updated_at":"2015-04-14T09:36:33.000Z","dependencies_parsed_at":"2022-09-05T01:30:49.295Z","dependency_job_id":null,"html_url":"https://github.com/abiosoft/orchestra","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abiosoft/orchestra","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abiosoft%2Forchestra","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abiosoft%2Forchestra/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abiosoft%2Forchestra/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abiosoft%2Forchestra/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abiosoft","download_url":"https://codeload.github.com/abiosoft/orchestra/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abiosoft%2Forchestra/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275690693,"owners_count":25510498,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-09-17T02:00:09.119Z","response_time":84,"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":"2024-10-13T09:31:38.767Z","updated_at":"2025-09-18T00:40:06.192Z","avatar_url":"https://github.com/abiosoft.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Orchestra\n#### Minimalistic Orchestration Layer\n[![Build Status](https://drone.io/github.com/abiosoft/orchestra/status.png)](https://drone.io/github.com/abiosoft/orchestra/latest)\n\nRuns API calls concurrently\n\n### Usage\n#### APIs\nAPIs are set via comma separated key value column pairs through the `requests` query parameter.\n```\nhttp://127.0.0.1:8080?requests=identifier1:http://url1.xyz,identifier2:http://url2.xyz\n```\nWhat if the `value` url has its own query parameters? Url encode the entire query string starting from `?`.\n### Parameters\n\n| Parameter | Description | Default | Expected Value |\n| --------- | ----------- | ------- | ----- |\n| requests* | Key value column pairs | | String |\n| timeout | Timeout in milliseconds | 10000 | Integer\n| type | Response Type | json | String, one of `[json, delimiter]` |\n| delimiter**| Delimiter to use| ---XXX--- | String |\n`* Required`  \n`** Requires type=delimiter`\n\nSample request with all parameters\n```\nhttp://127.0.0.1:8080?requests=id1:http://url1.xy,id2:http://url2.xy\u0026timeout=500\u0026type=delimiter\u0026delimiter=---XXX---\n```\n\n### Response\nResponse comes in 2 format specified by `type` parameter.\n#### 1. Json\n```json\n[\n  {\n    \"id\": \"identifier1\",\n    \"status_code\": 200,\n    \"status\": \"200 OK\",\n    \"duration\": \"130ms\",\n    \"body\": \"\u003chtml\u003e\u003cbody\u003e\u003ch1\u003eIt works!\u003c/h1\u003e\u003c/body\u003e\u003c/html\u003e\\n\"\n  },\n  {\n    \"id\": \"identifier2\",\n    \"status_code\": 400,\n    \"status\": \"400 Bad Request\",\n    \"duration\": \"10ms\",\n    \"body\": \"Bad Request: required parameter 'requests' missing.\"\n  },\n  {\n    \"id\": \"identifier3\",\n    \"error\": \"Request timed out\"\n  }\n]\n```\n#### 2. Delimiter Separated\n```\nId: identifier1, Status: 200 OK, Duration: 130ms\n\u003chtml\u003e\u003cbody\u003e\u003ch1\u003eIt works!\u003c/h1\u003e\u003c/body\u003e\u003c/html\u003e\n---XXX---\nId: identifier2, Status: 400 Bad Request, Duration: 10ms\nBad Request: required parameter 'requests' missing.\n---XXX---\nId: identifier3, Status: error\nRequest timed out\n```\n\n### Server\nDefaults to Port `8080` but can be overidden using the first command line argument\n```shell\n$ orchestra 8080\nOrchestra listening on port 8080\n```\n\n### State\nOrchestra is still in very early stage and active development\n\n### Installation\n```shell\n$ go get github.com/abiosoft/orchestra\n```\nGo is a prerequisite, [install it here](https://golang.org/doc/install) if you do not have it installed.\n\n### Planned\n* Support POST and other request types.\n* Configuration files.\n* Web Interface.\n* Better CLI support.\n* Request hierarchy and dependency. Ability to call one request before the other and possibly extract values from response of one request to use in another request.\n* Robust test cases and high code coverage.\n* Project page.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabiosoft%2Forchestra","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabiosoft%2Forchestra","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabiosoft%2Forchestra/lists"}