{"id":18839722,"url":"https://github.com/maximbilan/swiftoxfordapi","last_synced_at":"2025-09-26T14:08:26.422Z","repository":{"id":62456634,"uuid":"157071733","full_name":"maximbilan/SwiftOxfordAPI","owner":"maximbilan","description":"A framework to use Oxford Dictionaries API written in Swift","archived":false,"fork":false,"pushed_at":"2019-01-17T19:10:28.000Z","size":39,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-05T21:07:08.594Z","etag":null,"topics":["definition","oxford","oxford-dictionary","swift","translate"],"latest_commit_sha":null,"homepage":"","language":"Swift","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/maximbilan.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":"2018-11-11T11:11:51.000Z","updated_at":"2025-04-16T05:06:33.000Z","dependencies_parsed_at":"2022-11-01T22:46:28.955Z","dependency_job_id":null,"html_url":"https://github.com/maximbilan/SwiftOxfordAPI","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/maximbilan/SwiftOxfordAPI","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximbilan%2FSwiftOxfordAPI","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximbilan%2FSwiftOxfordAPI/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximbilan%2FSwiftOxfordAPI/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximbilan%2FSwiftOxfordAPI/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maximbilan","download_url":"https://codeload.github.com/maximbilan/SwiftOxfordAPI/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maximbilan%2FSwiftOxfordAPI/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":277088744,"owners_count":25758766,"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-26T02:00:09.010Z","response_time":78,"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":["definition","oxford","oxford-dictionary","swift","translate"],"created_at":"2024-11-08T02:43:53.439Z","updated_at":"2025-09-26T14:08:26.369Z","avatar_url":"https://github.com/maximbilan.png","language":"Swift","funding_links":[],"categories":[],"sub_categories":[],"readme":"# SwiftOxfordAPI\nA framework to consume the \u003ca href=\"https://developer.oxforddictionaries.com/documentation\"\u003eOxford Dictionaries API\u003c/a\u003e written in Swift.\u003c/br\u003e\n🍟🍉🍋🍇🍌\n\n## Installation\n\u003cb\u003eCocoaPods:\u003c/b\u003e\n\u003cpre\u003e\npod 'SwiftOxfordAPI'\n\u003c/pre\u003e\n\u003cb\u003eCarthage:\u003c/b\u003e\n\u003cpre\u003e\ngithub \"maximbilan/SwiftOxfordAPI\"\n\u003c/pre\u003e\n\u003cb\u003eSwift Package Manager:\u003c/b\u003e\n\u003cpre\u003e\ndependencies: [\n    .package(url: \"https://github.com/maximbilan/SwiftOxfordAPI\", from: \"0.2\"))\n]\n\u003c/pre\u003e\n\u003cb\u003eManual:\u003c/b\u003e\n\u003cpre\u003e\nCopy \u003ci\u003eSwiftOxfordAPI.swift\u003c/i\u003e to your project.\n\u003c/pre\u003e\n\n## Initialization\n\nFirst of all you have to generate API ID and APP key.\nAnd then use the following code:\n```swift\nSwiftOxfordAPI.shared.start(appId: \"APP_ID_HERE\", appKey: \"APP_KEY_HERE\")\n```\n\n## Using\n\nRight now the framework is supported only two requests: `entries` and `translation`.\nFor example:\n```swift\nSwiftOxfordAPI.shared.entries(language: \"en\", word: \"queen\", region: \"us\", filters: \"grammaticalFeatures=singular,past;lexicalCategory=noun\") { [weak self] (data, error) in\n    self?.handleResponse(data, error)\n}\n```\n\n```swift\nSwiftOxfordAPI.shared.translation(sourceLanguage: \"en\", word: \"queen\", targetLanguage: \"es\") { [weak self] (data, error) in\n    self?.handleResponse(data, error)\n}\n```\n\n## To do:\n\nUnfortunately, I stopped working on this repository because I don't need it for the moment.\nIt's not difficult to expand the methods, just follow the implemented code. There is a list below of services which were already implemented. So, If you need more, please create a pull request with implemented services, I'll accept it.\n\n- [x] Entries\n- [x] Translation\n- [ ] Sentences\n- [ ] Lemmatron\n- [ ] Thesaurus\n- [ ] LexiStats\n- [ ] Search\n- [ ] Wordlist\n- [ ] Utility\n\n## License\n\n\u003ci\u003eSwiftOxfordAPI\u003c/i\u003e is available under the MIT license. See the LICENSE file for more info.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximbilan%2Fswiftoxfordapi","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaximbilan%2Fswiftoxfordapi","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaximbilan%2Fswiftoxfordapi/lists"}