Files
wehub-resource-sync b957a53def
CodeQL / Analyze (csharp) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
chore: import upstream snapshot with attribution
2026-07-13 13:21:23 +08:00

46 lines
1.1 KiB
JSON

{
"openapi": "3.1.0",
"info": {
"title": "RestCountries.NET API",
"description": "Web API version 3.1 for managing country items, based on previous implementations from restcountries.eu and restcountries.com.",
"version": "v3.1"
},
"servers": [
{ "url": "https://restcountries.net" }
],
"auth": [],
"paths": {
"/v3.1/currency": {
"get": {
"description": "Search by currency.",
"operationId": "LookupCountryByCurrency",
"parameters": [
{
"name": "currency",
"in": "query",
"description": "The currency to search for.",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"200": {
"description": "Success",
"content": {
"text/plain": {
"schema": {
"type": "string"
}
}
}
}
}
}
}
},
"components": {
"schemes": {}
}
}