- Nov 2022
-
dictionaryapi.com dictionaryapi.com
Tags
Annotators
URL
-
-
api.collinsdictionary.com api.collinsdictionary.com
-
www.programmableweb.com www.programmableweb.com
-
levelup.gitconnected.com levelup.gitconnected.com
-
Clean code examples (YouTube)Why Are You Still Creating CRUD APIs?Remove Your If-Else and Switch CasesWhy Cognitive and Cyclomatic Complexity Matters in Software DevelopmentWriting Cleaner Code (With Examples)Resources for the curious📚 Source Code (GitHub) by Nicklas Millard, the authorRESTful API Design by MicrosoftArchitectural Styles and the Design of Network-based Software Architectures by R.T. FieldingWhat is REST by codeacademyIs Crud Bad For Rest? by Boris LublinskyHATEOAS Driven REST APIs by restfulapi.netHATEOAS — a simple explanation by Bartosz JedrzejewskiWhy HATEOAS is useless and what it means for REST by Andreas ReiserRESTful Considered Harmful by Tomasz NurkiewiczTask-Based UI on cqrs.wordpress.comCRUD is an antipattern by Mathias VerraesWhy REST sucks by Troy A. Griffitts
Useful links for Web & generic programming.
-
RPC-like but still REST-full is way more preferred than those rotten CRUD designs.
-
-
www.programmableweb.com www.programmableweb.comAlgolia1
Tags
Annotators
URL
-
-
www.algolia.com www.algolia.com
Tags
Annotators
URL
-
-
developer.wordpress.org developer.wordpress.org
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
-
opengtindb.org opengtindb.org
Tags
Annotators
URL
-
- Oct 2022
-
www.val.town www.val.townval town1
-
https://www.val.town/
Val Town is a collaborative notebook for APIs
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
-
Hypothesis REST API
Hypothesis usa REST API
-
-
developer.vimeo.com developer.vimeo.com
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.comVimeo1
Tags
Annotators
URL
-
-
-
How do REST APIs work? REST, or “representational state transfer,” is a type of software design that gives access to data (aka “web resources”) by using a uniform and predefined set of operations. The payload - the data to be delivered - defined in the request itself, will be formatted in a language such as HTML, JSON, or XML. The set of operations are the methods available to HTTP, which is the underlying protocol for how browsers retrieve websites from servers. These methods include GET, POST, PUT, DELETE, and others.
O que é payload
-
REST APIs If you’ve heard people talk about JSON (javascript object notation), chances are they’re talking about REST APIs. Over 70% of all public APIs use REST, because of its fast performance, reliability, and ability to scale by reusing modular components without affecting the system as a whole.
O que é REST API
Tags
Annotators
URL
-
-
h.readthedocs.io h.readthedocs.io
-
Communication with this endpoint consists of JSON-encoded messages sent from client to server and vice versa.
Este é o EndPoint da API do Hypothesis.
-
-
support.apple.com support.apple.com
-
Para solicitar a primeira API, crie um URL que aponte para o “endpoint” da API com a qual deseja se comunicar e passe o URL à ação “Obter Conteúdo do URL”. Quando o atalho é executado, essa ação faz a solicitação de API.
Parece que um EndPoint é a porta de comunicação entre um HTTP API server e seu cliente.
-
-
yts.mx yts.mx
-
-
www.programmableweb.com www.programmableweb.comYTS.MX1
Tags
Annotators
URL
-
-
www.surfingbits.com www.surfingbits.com
-
stackoverflow.com stackoverflow.com
-
If the common storage type has to be changed (for example from string to int), a migration of content is perfomed together with any necessary update of the mapping code
-
-
blog.bitsrc.io blog.bitsrc.io
-
With a well-defined versioning strategy, when releasing a non-backwards compatible version, you can keep the existing one and the new one working in parallel for a pre-defined window of time
-
-
-
you will need to accommodate backwards compatibility or support multiple versions of an API running in parallel
-
-
www.moesif.com www.moesif.com
-
GraphQL APIs should prefer evolution over versioning, but overall, nobody has an absolute opinion about either approach
-
-
mrbrainz.github.io mrbrainz.github.io
Tags
Annotators
URL
-
-
codesandbox.io codesandbox.io
Tags
Annotators
URL
-
-
www.w3.org www.w3.orgRDF API1
-
- Sep 2022
-
members.eidr.org members.eidr.org
Tags
Annotators
URL
-
-
rororo.readthedocs.io rororo.readthedocs.io
-
"detail": [ { "loc": [ "body", "name" ], "message": "Field required" }, { "loc": [ "body", "email" ], "message": "'not-email' is not an 'email'" } ]
not complient with Problem Details, which requires
details
to be a string
-
-
developer.mozilla.org developer.mozilla.org
-
www.programmableweb.com www.programmableweb.com
-
secondhandsongs.com secondhandsongs.com
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
-
musicovery.com musicovery.com
Tags
Annotators
URL
-
-
developers.google.com developers.google.com
- Aug 2022
-
-
I'm building a Rails API with a separate web frontend app as "just another API client" (various smartphone apps to follow as well). In the previous "monolithic" version of the service, where all the server side was rolled into one Rails app
-
-
stackoverflow.com stackoverflow.com
-
The Widget API allows you to externally control the widget that is embedded on your website through javascript. You set the width and height of the widget to 0 and it hides the widget. I tinkered with this on codepen this week and I am pleased that I now have a working playlist ready to be utilized on my website.
https://codepen.io/mdcrowcodes/pen/eYEMyzY
```js var iframeElement = document.querySelector('iframe'); var iframeElementID = iframeElement.id; var widget = SC.Widget(iframeElement); var x = document.getElementById("play");
widget.bind(SC.Widget.Events.FINISH,function(){ widget.getCurrentSound(function(currentSound) { document.getElementById("currentTrack").innerHTML = currentSound.title; }); });
function play(){<br /> if (x.innerHTML === "▶") { x.innerHTML = "||"; } else {x.innerHTML = "▶"; } widget.toggle(); };
function next(){ x.innerHTML = "||"; widget.next(); widget.seekTo(0); widget.getCurrentSound(function(currentSound) { document.getElementById("currentTrack").innerHTML = currentSound.title; }); };
function prev(){ x.innerHTML = "||"; widget.prev(); widget.seekTo(0); widget.getCurrentSound(function(currentSound) { document.getElementById("currentTrack").innerHTML = currentSound.title; }); };
widget.bind(SC.Widget.Events.READY, function() { widget.getCurrentSound(function(currentSound) { document.getElementById("currentTrack").innerHTML = currentSound.title;
widget.getSounds(function(tracks){ for (var i in tracks) {
$('#tracklist').append("<li class='track-item' id='" + i + "'" + ">" + tracks[i].title + "</li>"); } $(".track-item").click(function(){ var s = this.id widget.seekTo(0); widget.skip(s); x.innerHTML = "||" ; widget.getCurrentSound(function(currentSound) {
document.getElementById("currentTrack").innerHTML = currentSound.title; });
});
});
}); }); ```
-
-
gql.reddit.com gql.reddit.com
-
-
listenbrainz.readthedocs.io listenbrainz.readthedocs.io
-
www.programmableweb.com www.programmableweb.com
-
developer.spotify.com developer.spotify.com
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
Tags
Annotators
URL
-
-
pepa.holla.cz pepa.holla.cz
-
raw.githubusercontent.com raw.githubusercontent.com
-
www.slideshare.net www.slideshare.net
Tags
Annotators
URL
-
-
raw.githubusercontent.com raw.githubusercontent.com
-
getpocket.com getpocket.com
-
-
www.programmableweb.com www.programmableweb.comPocket1
Tags
Annotators
URL
-
-
twitter.com twitter.com
-
Pouria Hadjibagheri [@Pouriaaa]. (2021, July 14). The state of the UK’s statistical system 2020/21 by @StatsRegulation Thank you! 🎊😀🎉 See the report: Https://osr.statisticsauthority.gov.uk/publication/the-state-of-the-uks-statistical-system-2020-21/pages/8/ https://t.co/dEBmVz3oTm [Tweet]. Twitter. https://twitter.com/Pouriaaa/status/1415371346775838725
-
-
docs.github.com docs.github.com
-
-
stackoverflow.com stackoverflow.com
-
The vendor prefix (vnd.) indicates that it is custom for this vendor.
-
The +json indicates that it can be parsed as JSON, but the media type should define further semantics on top of JSON.
-
-
webmention.io webmention.io
-
-
-
-
github.com github.com
-
yaml definitions: Annotation: type: object required: - user - uri properties: id: type: string description: Unique ID for this Annotation. uri: type: string description: URI which is the target of this Annotation. target: type: array items: - type: object properties: scope: type: array items: - type: string selector: type: array items: - type: object properties: type: description: Type of Selector--see Web Annotation Data Model. type: string source: type: string user: type: string description: User URI in the form of an `acct` prefixed URI. document: type: object description: Target document metadata schema: $ref: '#/definitions/DocumentMetadata' permissions: type: object description: Permissions for this Annotation. created: type: string format: date-time updated: type: string format: date-time AnnotationList: type: object properties: total: type: number rows: type: array items: $ref: '#/definitions/Annotation' DocumentMetadata: type: object properties: eprints: type: object title: type: string twitter: type: object properties: image:src: type: array items: type: string title: type: array items: type: string description: type: array items: type: string card: type: array items: type: string site: type: array items: type: string dc: type: object favicon: type: string prism: type: object highwire: type: object link: type: array items: type: object properties: href: type: string facebook: type: object properties: site_name: type: array items: type: string description: type: array items: type: string title: type: array items: type: string url: type: array items: type: string image: type: array items: type: string type: type: array items: type: string
-
-
www.programmableweb.com www.programmableweb.com
-
stackoverflow.com stackoverflow.com
-
These are the key parameters.
prop=revisions&rvprop=content&rvsection=0
rvsection = 0
specifies to only return the lead section.
-
-
hackernews.api-docs.io hackernews.api-docs.io
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.comReddit1
Tags
Annotators
URL
-
-
stackoverflow.com stackoverflow.com
-
you can also replicate the bind:this syntax if you please: Wrapper.svelte <script> let root export { root as this } </script> <div bind:this={root} />
This lets the caller use it like this:
<Wrapper bind:this={root} />
in the same way we can already do this with elements:
<div bind:this=
-
- Jul 2022
-
prim.iledefrance-mobilites.fr prim.iledefrance-mobilites.fr
Tags
Annotators
URL
-
- Jun 2022
-
www.mixcloud.com www.mixcloud.com
Tags
Annotators
URL
-
-
www.mixcloud.com www.mixcloud.com
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.comMixcloud1
Tags
Annotators
URL
-
-
gist.github.com gist.github.com
-
# tunejack.sh uses the TuneIn public API (at opml.radiotime.com) to search for # a radio station, print out its details and try to play it somehow.
Tags
Annotators
URL
-
-
developers.google.com developers.google.com
Tags
Annotators
URL
-
-
webmention.io webmention.io
-
One can input a particular URL to the API to get webmentions returned, like so: https://webmention.io/api/mentions.jf2?target=https://www.miriamsuzanne.com/2022/06/04/indiweb/&per-page=1000
-
-
chelseatroy.com chelseatroy.com
-
The creator of GraphQL admits this. During his presentation on the library at a Facebook internal conference, an audience member asked him about the difference between GraphQL and SOAP. His response: SOAP requires XML. GraphQL defaults to JSON—though you can use XML.
-
Conclusion There are decades of history and a broad cast of characters behind the web requests you know and love—as well as the ones that you might have never heard of. Information first traveled across the internet in 1969, followed by a lot of research in the ’70s, then private networks in the ’80s, then public networks in the ’90s. We got CORBA in 1991, followed by SOAP in 1999, followed by REST around 2003. GraphQL reimagined SOAP, but with JSON, around 2015. This all sounds like a history class fact sheet, but it’s valuable context for building our own web apps.
-
-
podcastindex-org.github.io podcastindex-org.github.io
Tags
Annotators
URL
-
-
developers.google.com developers.google.com
-
developers.google.com developers.google.com
Tags
Annotators
URL
-
-
blogger-developers.googleblog.com blogger-developers.googleblog.com
-
developers.google.com developers.google.com
Tags
Annotators
URL
-
-
cyber.harvard.edu cyber.harvard.edu
- May 2022
-
www.programmableweb.com www.programmableweb.comTuneFind1
Tags
Annotators
URL
-
-
www.tunefind.com www.tunefind.com
Tags
Annotators
URL
-
-
www.slideshare.net www.slideshare.net
-
medium.com medium.com
-
json { "success": true, "message": "User logged in successfully", "data": { "user": { "id": 2, "name": "Client", "client_id": 1, "email": "client@clickapps.co", "gender_label": null, "gender": null, "mobile": "123654789", "code_country": "00967", "birth_date": null, "avatar": "http://localhost:3000/default_image.png", "sms_notification": true, "is_mobile_verified": false, "otp": { "otp": "8704" }, "client_city": { "id": 3, "name_ar": "الرياض", "name_en": "Riadh", "name": "Riadh", "status": 1, "status_label": "Active", "country": { "id": 2, "name": "Kingdub saudi Arab", "code_country": "ksa", "avatar": "http://localhost:3000/default_image.png", "status": 1, "status_label": "Active" } }, "client_locations": [ { "id": 1, "client_id": 1, "latitude": "0.0", "longitude": "0.0", "address": "169 Rath Rapids", "address_ar": "964 Michale Parkway", "address_en": "169 Rath Rapids", "building_name": "building_name", "location_type": 1, "location_type_label": "Home", "apartment_name": null, "require_permission": false, "city": null, "zip_code": null } ] }, "role": "client", "token": "eyJhbGciOiJIUzI1NiJ9.eyJpZCI6MiwibmFtZSI6IkNsaWVudCIsImVtYWlsIjoiY2xpZW50QGNsaWNrYXBwcy5jbyIsIm1vYmlsZSI6IjEyMzY1NDc4OSIsImltYWdlIjoiL2RlZmF1bHRfaW1hZ2UucG5nIiwiYWRtaW4iOmZhbHNlLCJpYXQiOjE1NDc5MjU0MzIsImV4cCI6MTU1MDUxNzQzMn0.4Vyjd7BG7v8AFSmGKmIs4VM2FBw3gOLn97Qdf6U4jxU" } }
-
-
www.programmableweb.com www.programmableweb.comxkcd1
Tags
Annotators
URL
-
-
xkcd.com xkcd.com
-
If you want to fetch comics and metadata automatically, you can use the JSON interface. The URLs look like this: https://xkcd.com/info.0.json (current comic) or: https://xkcd.com/614/info.0.json (comic #614) Those files contain, in a plaintext and easily-parsed format: comic titles, URLs, post dates, transcripts (when available), and other metadata.
-
-
-
-
jsonapi.org jsonapi.org
-
-
www.youtube.com www.youtube.com
-
-
www.navigae.fr www.navigae.fr
Tags
Annotators
URL
-
-
github.com github.com
Tags
Annotators
URL
-
-
www.specref.org www.specref.orgSpecref1
-
bash $ curl https://api.specref.org/search-refs?q=json-ld | jq '.' % Total % Received % Xferd Average Speed Time Time Time Current Dload Upload Total Spent Left Speed 100 38628 100 38628 0 0 44605 0 --:--:-- --:--:-- --:--:-- 44553 { "JSON-LD-TESTS": { "authors": [ "RDF Working Group" ], "href": "https://www.w3.org/2013/json-ld-tests/", "title": "JSON-LD 1.0 Test Suite", "date": "11 April 2013", "status": "ED", "publisher": "W3C", "id": "JSON-LD-TESTS" }, "json-ld": { "authors": [ "Manu Sporny", "Gregg Kellogg", "Markus Lanthaler" ], "href": "https://www.w3.org/TR/json-ld/", "title": "JSON-LD 1.0", "status": "REC", "publisher": "W3C", "deliveredBy": [ { "url": "https://www.w3.org/2011/rdf-wg/", "shortname": "rdf" } ], "versions": [ "json-ld-20201103", "json-ld-20140116", "json-ld-20131105", "json-ld-20130910", "json-ld-20130411", "json-ld-20120712" ], "id": "json-ld", "date": "3 November 2020" }, ...
-
-
www.kanzaki.com www.kanzaki.com
-
-
reqbin.com reqbin.com
-
-
www.youtube.com www.youtube.com
Tags
Annotators
URL
-
-
www.hydraecosystem.org www.hydraecosystem.org
-
-
www.slideshare.net www.slideshare.net
-
www.hydra-cg.com www.hydra-cg.com
-
``` HTTP/1.1 200 OK Content-Type: application/ld+json Link: http://api.example.com/doc/; rel="http://www.w3.org/ns/hydra/core#apiDocumentation"
{ "@context": "http://www.w3.org/ns/hydra/context.jsonld", "@graph": [{ "@id": "http://api.example.com/people", "@type": "hydra:Collection", "api:personByName": "api:PersonByNameTemplate" }, { "@id": "http://api.example.com/events", "@type": "hydra:Collection", "api:eventByName": "api:EventByNameTemplate" } } ```
Tags
Annotators
URL
-
-
isni.oclc.org:2443 isni.oclc.org:2443
-
www.legislation.gov.uk www.legislation.gov.uk
Tags
Annotators
URL
-
-
www.legislation.gov.uk www.legislation.gov.uk
-
If you are using RDFa within your pages, you can use the resource attribute to indicate that you are linking to a piece of legislation while including a link to another source of information. For example,
html The <a rel="cite" resource="http://www.legislation.gov.uk/id/ukpga/1999/17" href="http://en.wikipedia.org/wiki/Disability_Rights_Commission_Act_1999">Disability Rights Commission Act 1999</a> replaced the National Disability Council with the Disability Rights Commission (DRC).
will generate the triple<> xhv:cite <http://www.legislation.gov.uk/id/ukpga/1999/17>
Tags
Annotators
URL
-
-
opencitations.net opencitations.net
-
Exemplar output (in JSON)
json [ { "oci": "02001010806360107050663080702026306630509-0200101080636102703040309", "citing": "10.1186/1756-8722-6-59", "cited": "10.1186/ar3439", "creation": "2013", "timespan": "P2Y", "journal_sc": "no", "author_sc": "no" }, { "oci": "02001010806360107050663080702026306630509-0200101080636102704000806", "citing": "10.1186/1756-8722-6-59", "cited": "10.1186/ar4086", "creation": "2013", "timespan": "P1Y", "journal_sc": "no", "author_sc": "no" }, { "oci": "02001010806360107050663080702026306630509-020010200003619122437020001023704023707090006", "citing": "10.1186/1756-8722-6-59", "cited": "10.1200/jco.2012.42.7906", "creation": "2013", "timespan": "P0Y", "journal_sc": "no", "author_sc": "no" }, { "oci": "02001010806360107050663080702026306630509-02003010009360008080300010805370200010237060604070907", "citing": "10.1186/1756-8722-6-59", "cited": "10.3109/08830185.2012.664797", "creation": "2013", "timespan": "P0Y", "journal_sc": "no", "author_sc": "no" }
Tags
Annotators
URL
-
-
opencitations.net opencitations.net
-
|Prefix|Supplier|Identifier type|Example| |--- |--- |--- |--- | |010|Wikidata|Wikidata Identifier (QID)|oci:01027931310-01022252312| |020|Crossref|Digital Object Identifier (DOI)|oci:02001010806360107050663080702026306630509-02001010806360107050663080702026305630301| |030|OpenCitations Corpus|OpenCitations Corpus Internal Identifier|oci:0301-03018| |040|Dryad|Digital Object Identifier (DOI)|oci:040050006013613273410133708070900-04003070302361019113701000000040801| |050|CROCI|Digital Object Identifier (DOI)|oci:05001000106361937321411281422370200010237000837000001-050010008073602000009020002|
Tags
Annotators
URL
-
-
www.goodreads.com www.goodreads.comAPI1
Tags
Annotators
URL
-
-
convert.erfideo.com convert.erfideo.com
-
-
wiki.openfoodfacts.org wiki.openfoodfacts.org
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
Tags
Annotators
URL
-
-
support.datacite.org support.datacite.org
Tags
Annotators
URL
-
-
support.datacite.org support.datacite.org
Tags
Annotators
URL
-
-
www.parismuseescollections.paris.fr www.parismuseescollections.paris.fr
-
www.programmableweb.com www.programmableweb.com
Tags
Annotators
URL
-
-
collections.louvre.fr collections.louvre.fr
-
api.finto.fi api.finto.fi
-
-
shacl-play.sparna.fr shacl-play.sparna.fr
-
-
www.eidr.org www.eidr.org
-
docs.gitlab.com docs.gitlab.com
-
If you paste a message from somewhere else that spans multiple lines, you can quote that without having to manually prepend > to every line!
-
-
eur-lex.europa.eu eur-lex.europa.eu
Tags
Annotators
URL
-
-
nova.astrometry.net nova.astrometry.net
Tags
Annotators
URL
-
-
aml-org.github.io aml-org.github.io
Tags
Annotators
URL
-
-
aml-org.github.io aml-org.github.io
Tags
Annotators
URL
-
-
gist.github.com gist.github.com
-
We also support machine tags that follow the pattern
NAMESPACE:KEY=VALUE
. For example:geo:lat=43.555
camel:size=medium
machine:tag=with space
Machine tags are not revealed to the user on the track pages.
-
-
www.programmableweb.com www.programmableweb.comAcoustid1
Tags
Annotators
URL
-
-
acoustid.org acoustid.org
Tags
Annotators
URL
-
-
ssp.imcce.fr ssp.imcce.fr
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.comGitHub1
Tags
Annotators
URL
-
-
stackoverflow.com stackoverflow.com
-
e.g. https://api.github.com/search/issues?q=repo:nodejs/node+type:issue+state:closed
json { "total_count": 6595, "incomplete_results": false, "items": [...] }
-
-
github.com github.com
-
Get all repos from the user
https://api.github.com/users/:user/repos
, then look foropen_issues_count
in the named repo.HI, when you get issues by page like
issues?page=0&per_page=5
number
property from first element will be count of issues.
Tags
Annotators
URL
-
-
bioregistry.io bioregistry.io
Tags
Annotators
URL
-
-
docs.identifiers.org docs.identifiers.org
-
www.programmableweb.com www.programmableweb.comEIDR1
Tags
Annotators
URL
-
-
doc.transport.data.gouv.fr doc.transport.data.gouv.fr
-
www.velib-metropole.fr www.velib-metropole.fr
-
www.w3.org www.w3.org
-
-
webmention.app webmention.app
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.comGitbook1
Tags
Annotators
URL
-
-
www.librarything.com www.librarything.com
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
-
OPDS Endpoint: http://www.feedbooks.com/catalog.atom
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.comGenius1
Tags
Annotators
URL
-
-
mention-tech.appspot.com mention-tech.appspot.com
Tags
Annotators
URL
-
-
datatracker.ietf.org datatracker.ietf.orgrfc86311
-
4. Link Relations for Web Services
In order to allow Web services to represent the relation of individual resources to service documentation/description and metadata, this specification introduces and registers three new link relation types.
4.1. The service-doc Link Relation Type
The "service-doc" link relation type is used to represent the fact that a resource or a set of resources is documented at a specific URI. The target resource is expected to provide documentation that is primarily intended for human consumption.
4.2. The service-desc Link Relation Type
The "service-desc" link relation type is used to represent the fact that a resource or a set of resources is described at a specific URI. The target resource is expected to provide a service description that is primarily intended for machine consumption. In many cases, it is provided in a representation that is consumed by tools, code libraries, or similar components.
4.3. The service-meta Link Relation Type
The "service-meta" link relation type is used to link to available metadata for the service context of a resource. Service metadata is any kind of data that may be of interest to existing or potential service users, with documentation/description being only two possible facets of service metadata. The target resource is expected to provide a representation that is primarily intended for machine consumption. In many cases, it is provided in a representation that is consumed by tools, code libraries, or similar components.
Since service metadata can have many different purposes and use many different representations, it may make sense for representations using the "service-meta" link relation to offer additional hints about the specific kind or format of metadata that is being linked.
This definition of the "service-meta" link relation makes no specific assumptions about how these link hints will be represented, and the specific mechanism will depend on the context where the "service-meta" link relation is being used.
One example is that a "service-desc" link may identify an OpenAPI description, which is supposed to be the machine-readable description of a Web API. A "service-meta" link may identify a resource that contains additional metadata about the Web API, such as labels that classify the API according to a labeling scheme and a privacy policy that makes statements about how the Web API manages personally identifiable information.
Tags
Annotators
URL
-
-
ror.readme.io ror.readme.ioREST API1
Tags
Annotators
URL
-
-
wiki.myexperiment.org wiki.myexperiment.org
-
www.programmableweb.com www.programmableweb.com
-
wiki.myexperiment.org wiki.myexperiment.org
-
wiki.myexperiment.org wiki.myexperiment.org
-
www.protocols.io www.protocols.io
Tags
Annotators
URL
-
-
api.elifesciences.org api.elifesciences.org
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.comeLife1
Tags
Annotators
URL
-
-
rspec.info rspec.info
-
If you have a use case not supported by the existing public APIs, please ask and we'll be glad to add an API for you or make an existing private API public.
please ask
-
- Apr 2022
-
github.com github.com
-
There is something nice about aligning with the platform. But it risks being a straitjacket, and I think we can provide better ergonomics when it comes to streaming.
-
-
api.groundspeak.com api.groundspeak.com
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
Tags
Annotators
URL
-
-
pub.orcid.org pub.orcid.org
-
ORCID identifier types
| Name | Description | Resolution Prefix | Case sensitive | Primary use | |----------------|---------------------------------------------------------------------------------|-------------------------------------------------|--------------------|-----------------| | agr | agr: Agricola | false | work | | ark | ark: Archival Resource Key Identifier | true | work | | arxiv | arxiv: ArXiv | https://arxiv.org/abs/ | false | work | | asin | asin: Amazon Standard Identification Number | http://www.amazon.com/dp/ | false | work | | asin-tld | asin-tld: ASIN top-level domain | false | work | | authenticusid | authenticusid: AuthenticusID | https://www.authenticus.pt/ | false | work | | bibcode | Bibcode | http://adsabs.harvard.edu/abs/ | true | work | | cba | cba: Chinese Biological Abstracts | false | work | | cienciaiul | cienciaiul: Ciência-IUL Identifier | https://ciencia.iscte-iul.pt/id/ | false | work | | cit | cit: CiteSeer | false | work | | ctx | ctx: CiteExplore submission | false | work | | dnb | dnb: German National Library identifier | https://d-nb.info/ | false | work | | doi | doi: Digital object identifier | https://doi.org/ | false | work | | eid | Scopus Identifier | false | work | | emdb | emdb: Electron Microscopy Data Bank | https://www.ebi.ac.uk/emdb/ | true | work | | empiar | empiar: Electron Microscopy Public Image Archive | https://www.ebi.ac.uk/empiar/ | true | work | | ethos | ethos: EThOS Peristent ID | http://ethos.bl.uk/OrderDetails.do?uin= | false | work | | grant_number | grant number | false | work | | hal | hal: Hyper Articles en Ligne | https://hal.archives-ouvertes.fr/view/resolver/ | false | work | | handle | handle: Handle | http://hdl.handle.net/ | false | work | | hir | hir: NHS Evidence | false | work | | isbn | isbn: International Standard Book Number | https://www.worldcat.org/isbn/ | false | work | | ismn | ismn: International Standard Music Number | false | work | | issn | issn: International Standard Serial Number. Includes print and electronic ISSN. | https://portal.issn.org/resource/ISSN/ | false | work | | jfm | jfm: Jahrbuch über die Fortschritte der Mathematik | http://zbmath.org/?format=complete&q=an%3A | false | work | | jstor | jstor: JSTOR abstract | http://www.jstor.org/stable/ | false | work | | kuid | kuid: KoreaMed Unique Identifier | https://koreamed.org/article/ | false | work | | lccn | lccn: Library of Congress Control Number | http://lccn.loc.gov/ | false | work | | lensid | lensid: Lens ID | https://www.lens.org/ | false | work | | mr | mr: Mathematical Reviews | http://www.ams.org/mathscinet-getitem?mr= | false | work | | oclc | oclc: Online Computer Library Center | http://www.worldcat.org/oclc/ | false | work | | ol | ol: Open Library | http://openlibrary.org/b/ | false | work | | osti | osti: Office of Scientific and Technical Information | https://www.osti.gov/biblio/ | false | work | | other-id | Other identifier type | false | work | | pat | Patent number | false | work | | pdb | pdb: Protein Data Bank identifier | http://identifiers.org/pdb/ | false | work | | pmc | pmc: PubMed Central article number | https://europepmc.org/article/pmc/ | false | work | | pmid | pmid: PubMed Unique Identifier | https://pubmed.ncbi.nlm.nih.gov/ | false | work | | ppr | ppr: Europe PMC Preprint Identifier | https://europepmc.org/article/PPR/ | false | work | | proposal-id | Proposal ID | false | work | | rfc | rfc: Request for Comments | https://tools.ietf.org/html/ | false | work | | rrid | rrid: Research Resource IDentifier | https://identifiers.org/rrid/ | true | work | | source-work-id | Non-standard ID from work data source | false | work | | ssrn | ssrn: Social Science Research Network | http://papers.ssrn.com/abstract_id= | false | work | | uri | uri: URI | true | work | | urn | urn: URN | false | work | | wosuid | wosuid: Web of Science™ identifier | false | work | | zbl | zbl: Zentralblatt MATH | http://zbmath.org/?format=complete&q= | false | work |
-
-
info.orcid.org info.orcid.org
Tags
Annotators
URL
-
-
www.programmableweb.com www.programmableweb.com
Tags
Annotators
URL
-
-
api.cloudflare.com api.cloudflare.com
-
-
-
API integration is pivotal to mobile transformation, bringing a well-needed relief to app developers.
-
-
torrentapi.org torrentapi.org
-
Api endpoint is - https://torrentapi.org/pubapi_v2.php
Tags
Annotators
URL
-
-
Tags
Annotators
URL
-
- Mar 2022
-
www.vinzius.com www.vinzius.com
-
www.wikidata.org www.wikidata.org
Tags
Annotators
URL
-
-
www.crossref.org www.crossref.org
-
vpic.nhtsa.dot.gov vpic.nhtsa.dot.gov
-
github.com github.com
-
This gem is just one concern with one scope. If you want to customize it later you can simply copy the code directly into your project.
-
-
radiodns.org radiodns.org
-
-
askubuntu.com askubuntu.com
-
his serves as a good example of apt-gets stability. In apt, the name was changed to be more user friendly, while in apt-get the name remains unchanged so as not to break compatibility with old scripts.
-
Use apt as a first choice, but if you're scripting use apt-get. Apt-get has more stable output (meaning that the output format is left alone as much as possible so as not to break scripts which parse that output automatically). Apt-get also has some low-level commands not available in apt.
-
-
-
Pragma::Migration is an experiment at implementing Stripe-style API versioning.
Tags
Annotators
URL
-
-
prefix.zazuko.com prefix.zazuko.com
-
-
r.bluethl.net r.bluethl.net
-
As mentioned earlier, PATCH requests should apply partial updates to a resource, whereas PUT replaces an existing resource entirely. It's usually a good idea to design updates around PATCH requests
Prefer PATCH over PUT
-
Aside from using HTTP status codes that indicate the outcome of the request (success or error), when returning errors, always use a standardized error response that includes more detailed information on what went wrong.
For example: ``` // Request => GET /users/4TL011ax
// Response <= 404 Not Found { "code": "user/not_found", "message": "A user with the ID 4TL011ax could not be found." } ```
-
https://api.averagecompany.com/v1/health https://api.averagecompany.com/health?api_version=1.0
2 examples of versioning APIs
-
When dealing with date and time, APIs should always return ISO 8601-formatted strings.
Tags
Annotators
URL
-
-
support.isan.org support.isan.org
-
n2t.net n2t.net
-
-
road.issn.org road.issn.org
-
api.nasa.gov api.nasa.gov
-
-
mgnet.me mgnet.me
Tags
Annotators
URL
-
-
www.doi.org www.doi.org
-
info.orcid.org info.orcid.org
-
developer.oxforddictionaries.com developer.oxforddictionaries.com