Skip to content

Instantly share code, notes, and snippets.

@philsturgeon
Forked from kinlane/apis-json-example.json
Last active May 27, 2024 10:16
Show Gist options
  • Save philsturgeon/b381e2e6b8633e70a55eb64f07e6e611 to your computer and use it in GitHub Desktop.
Save philsturgeon/b381e2e6b8633e70a55eb64f07e6e611 to your computer and use it in GitHub Desktop.
APIs.json Example
{
"name": "Example API",
"type": "Index",
"description": "This is an example APIs.json file, demonstrating what is possible with the 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": "2024-05-27",
"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.yaml"
},
{
"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": "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