-
-
Save kinlane/c5e71db5769a6d6b7f221ba89686e3e0 to your computer and use it in GitHub Desktop.
APIs.json Example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Example API", | |
"type": "Index", | |
"description": "This is an example APIs.json file, demonstrating what is possible with\nthe API discovery specification.", | |
"image": "https://kinlane-productions.s3.amazonaws.com/apis-json/apis-json-logo.jpg", | |
"tags": [ | |
"Application Programming Interface", | |
"API" | |
], | |
"created": "2014-04-07", | |
"modified": "2020-09-03", | |
"url": "http://example.com/apis.json", | |
"specificationVersion": "0.16", | |
"apis": [ | |
{ | |
"name": "Example API", | |
"description": "This provides details about a specific API, telling what is possible.", | |
"image": "https://kinlane-productions.s3.amazonaws.com/apis-json/apis-json-logo.jpg", | |
"humanURL": "http://example.com", | |
"baseURL": "http://api.example.com", | |
"tags": [ | |
"API", | |
"Application Programming Interface" | |
], | |
"properties": [ | |
{ | |
"type": "Documentation", | |
"url": "https://example.com/documentation" | |
}, | |
{ | |
"type": "OpenAPI", | |
"url": "http://example.com/openapi.json" | |
}, | |
{ | |
"type": "JSONSchema", | |
"url": "http://example.com/json-schema.json" | |
} | |
], | |
"contact": [ | |
{ | |
"FN": "APIs.json", | |
"email": "[email protected]", | |
"X-twitter": "apisjson" | |
} | |
] | |
} | |
], | |
"common": [ | |
{ | |
"type": "Signup", | |
"url": "https://example.com/signup" | |
}, | |
{ | |
"type": "Authentication", | |
"url": "http://example.com/authentication" | |
}, | |
{ | |
"type": "Login", | |
"url": "https://example.com/login" | |
}, | |
{ | |
"type": "Blog", | |
"url": "http://example.com/blog" | |
}, | |
{ | |
"type": "Pricing", | |
"url": "http://example.com/pricing" | |
} | |
], | |
"include": [ | |
{ | |
"name": "Another Example API", | |
"url": "http://example.com/apis.json" | |
} | |
], | |
"maintainers": [ | |
{ | |
"FN": "Kin Lane", | |
"X-twitter": "apievangelist", | |
"email": "[email protected]" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment