{"_self":{"principle":"Self-explaining payload — no external context required. This _self block describes what you are reading and where to look next.","widget":"article_bundle","feature":"bundle","name":"LLM article bundle","what":"Paste-ready package: body + claims + sources + voxels + provenance + manifest + constitution.","contains":"body, claims, sources, voxels, provenance, question graph, constitution, llm_manifest","slug":"oip-what-is-rest","urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-rest/bundle?format=markdown"},"how_to_use":"Paste into any LLM. Read §SELF first. Write back via ingest or claim endpoints in llm_manifest.","write":null,"imessage":null,"router_tag":null,"proof_chain":[{"step":1,"claim":"Articles are voxel graphs of tiered claims, not prose blobs.","verify":"https://miscsubjects.com/api/articles/constitution"},{"step":2,"claim":"Claims link to hash-chained sources via source_ids.","verify":"https://miscsubjects.com/api/articles/oip-what-is-rest/sources"},{"step":3,"claim":"Ask reads topology; ingest/claim append to ledger.","verify":"https://miscsubjects.com/api/protocol"},{"step":4,"claim":"Models queue growth: populate → collaborate → repair → reflex.","verify":"https://miscsubjects.com/api/protocol/grow"},{"step":5,"claim":"Graph proves its own shape (reflex) and $/claim (yield).","verify":"https://miscsubjects.com/graph.html?layer=reflex"},{"step":6,"claim":"Full feature index + _explain on every API response.","verify":"https://miscsubjects.com/api/articles/system-map"}],"related_features":[{"id":"topology","name":"Article topology","what":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER.","urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-rest/topology"}},{"id":"voxels","name":"Voxel graph","what":"Claims as atoms, sources as edges (supported_by, posted_by). Per-claim provenance.","urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-rest/voxels","write":"https://miscsubjects.com/api/protocol/claim"}},{"id":"ask","name":"Ask protocol","what":"Answer only from topology; creates question_node with gaps and ingest_hint.","urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-rest/prompts","write":"https://miscsubjects.com/api/protocol/ask"}},{"id":"ingest","name":"Ingest protocol","what":"Parse pasted evidence → source ledger + claims + evidence_ingest node.","urls":{"write":"https://miscsubjects.com/api/protocol/ingest"}},{"id":"claim_post","name":"Claim post protocol","what":"Prompt-injection style POST — one claim voxel with who_claims + posted_by.","urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-rest/voxels","write":"https://miscsubjects.com/api/protocol/claim"}},{"id":"llm_manifest","name":"LLM manifest","what":"Machine-readable read/write contract for external LLMs.","urls":{"read":"https://miscsubjects.com/api/articles/llm-manifest"}}],"system_map":"https://miscsubjects.com/api/articles/system-map","system_map_markdown":"https://miscsubjects.com/api/articles/system-map?format=markdown","not_medical_advice":true},"_explain":{"feature":"bundle","name":"LLM article bundle","what":"Paste-ready package: body + claims + sources + voxels + provenance + manifest + constitution.","why":"Every feature is auditable collective intelligence","how":"Paste into any LLM. Read §SELF first. Write back via ingest or claim endpoints in llm_manifest.","model":null,"verifies":null,"urls":{"read":"https://miscsubjects.com/api/articles/oip-what-is-rest/bundle?format=markdown"},"imessage":null,"router":null,"related":[{"id":"topology","what":"Claims, sources, anecdotes, user reports, related embeds, question graph slice — for ask/ROUTER."},{"id":"voxels","what":"Claims as atoms, sources as edges (supported_by, posted_by). Per-claim provenance."},{"id":"ask","what":"Answer only from topology; creates question_node with gaps and ingest_hint."},{"id":"ingest","what":"Parse pasted evidence → source ledger + claims + evidence_ingest node."},{"id":"claim_post","what":"Prompt-injection style POST — one claim voxel with who_claims + posted_by."},{"id":"llm_manifest","what":"Machine-readable read/write contract for external LLMs."}],"not_medical_advice":true},"bundle_version":1,"generated_at":"2026-07-04T22:35:05.834Z","slug":"oip-what-is-rest","title":"What Is REST","url":"https://miscsubjects.com/a/oip-what-is-rest","register":"oip_protocol","tags":["oip","protocol"],"posted_at":"2026-07-04T18:30:49.474Z","updated_at":"2026-07-04T19:01:04.044Z","body":"REST is not a protocol. It is an architectural style that treats the entire web as a collection of resources, each addressable by a unique URL, manipulated through a small set of universal verbs.\n\nEvery REST interaction is stateless. The server forgets you after every request. You carry your context in the request itself — the URL, the headers, the body. This is not a limitation. It is the discipline that makes the web scale.\n\n## What It Is\n\n**REST (Representational State Transfer) is an architectural style for designing networked applications. It uses HTTP methods (GET, POST, PUT, DELETE, PATCH) to operate on resources identified by URLs. Each request from client to server must contain all the information needed to understand and process the request. The server stores no client session state between requests.**\n\nREST was coined by Roy Fielding in his 2000 doctoral dissertation. He did not invent it. He named what the web was already doing and distilled the constraints that made it work.\n\n## Why It Matters\n\nThe web won because it is simple. REST preserves that simplicity.\n\nBefore REST, distributed systems were a nightmare of custom protocols, binary wire formats, and fragile session state. CORBA, SOAP, DCOM — each required heavy tooling, thick clients, and tight coupling between systems. They were brittle. They broke when versions changed. They locked you into vendor stacks.\n\nREST changed the game. It said: use what exists. HTTP is already universal. URLs are already addressable. JSON is already readable. Stateless interactions mean any server can handle any request. Caching becomes trivial. Load balancing becomes trivial. Scaling becomes a matter of adding more boxes, not rewriting architecture.\n\nPhilosophically, REST embodies a profound principle: **uniform interface over hidden complexity**. The client does not need to know the database schema, the programming language, or the internal state machine. It sends a verb to a noun. The noun handles it. This separation of concerns is the foundation of all durable software.\n\nREST matters because it is the closest thing we have to a universal machine-to-machine language. Every programming language speaks HTTP. Every platform understands URLs. REST is the lingua franca of integration.\n\n## How It Works\n\nREST is built on six constraints. Four of them matter most in practice.\n\n**1. Client-Server Separation**\n\nThe client and server are independent. The client handles the user interface. The server handles data and logic. They evolve separately. You can rewrite the server in Go without touching the client. You can ship a new mobile app without touching the API.\n\n**2. Stateless**\n\nEach request is self-contained. The server does not remember who you are. If you need continuity, you send a token (JWT, API key, session cookie) with every request. The server validates it fresh each time. No server-side session storage. No sticky sessions. No single point of failure.\n\n**3. Cacheable**\n\nResponses must explicitly declare themselves cacheable or not. A GET response that says `Cache-Control: max-age=3600` can be stored by intermediaries and reused. This eliminates redundant work. It is why a CDN can serve millions of requests without ever hitting your origin.\n\n**4. Uniform Interface**\n\nThis is the core. Four sub-constraints govern it:\n\n- **Resource identification**: Every resource has a URL. `https://api.example.com/users/42`. Not `/getUser.php?id=42`. The URL names the thing, not the action.\n- **Manipulation through representations**: The client sends or receives a representation of the resource (usually JSON), not the resource itself. The server translates.\n- **Self-descriptive messages**: Each request and response contains all metadata needed to interpret it. Method, headers, status code, body. No out-of-band context.\n- **Hypermedia as the engine of application state (HATEOAS)**: A response contains links to related actions. The client discovers what it can do next from the response itself. This is REST in its pure form, though often ignored in practice.\n\n**Concrete Example: Ordering a Book**\n\nYou want to buy a book from an online store. The RESTful interaction looks like this:\n\n`GET /books/978-0-13-468599-1`\n\nThe server responds with the book's representation:\n\n```json\n{\n  \"id\": \"978-0-13-468599-1\",\n  \"title\": \"Clean Architecture\",\n  \"author\": \"Robert C. Martin\",\n  \"price\": 42.99,\n  \"links\": {\n    \"add_to_cart\": \"/cart/items\",\n    \"reviews\": \"/books/978-0-13-468599-1/reviews\"\n  }\n}\n```\n\nYou add it to your cart by POSTing to the `add_to_cart` link:\n\n```\nPOST /cart/items\nContent-Type: application/json\n\n{\n  \"book_id\": \"978-0-13-468599-1\",\n  \"quantity\": 1\n}\n```\n\nThe server responds:\n\n```json\n{\n  \"cart_item_id\": \"ci-12345\",\n  \"links\": {\n    \"checkout\": \"/checkout\",\n    \"remove\": \"/cart/items/ci-12345\"\n  }\n}\n```\n\nYou discover the checkout action from the response. No documentation required. No hardcoded URLs. The API teaches you how to use it.\n\n## The Contract\n\nREST is not a specification. It is a set of constraints. But in practice, a RESTful interface follows an exact contract.\n\n**The Resource Contract**\n\nEvery resource is a noun. Plural nouns for collections. Singular nouns for specific items.\n\n| URL Pattern | Meaning |\n|-------------|---------|\n| `/users` | Collection of all users |\n| `/users/42` | The specific user with id 42 |\n| `/users/42/orders` | Orders belonging to user 42 |\n| `/users/42/orders/7` | Specific order 7 of user 42 |\n\n**The Method Contract**\n\n| Method | Action | Idempotent | Safe |\n|--------|--------|------------|------|\n| GET | Retrieve a resource | Yes | Yes |\n| POST | Create a sub-resource | No | No |\n| PUT | Replace a resource entirely | Yes | No |\n| PATCH | Partially modify a resource | No | No |\n| DELETE | Remove a resource | Yes | No |\n\nIdempotent means doing it twice is the same as doing it once. Safe means it does not change state. GET must be both. POST is neither. DELETE is idempotent but not safe (the first call removes the resource; the second returns 404, but the state is the same).\n\n**The Status Code Contract**\n\n| Code | When to Use |\n|------|-------------|\n| 200 OK | Success, returning a body |\n| 201 Created | POST succeeded, new resource exists |\n| 204 No Content | Success, nothing to return (DELETE, empty PUT) |\n| 400 Bad Request | Client sent malformed data |\n| 401 Unauthorized | Client must authenticate |\n| 403 Forbidden | Client is authenticated but not authorized |\n| 404 Not Found | Resource does not exist |\n| 409 Conflict | Request conflicts with current state |\n| 422 Unprocessable | Semantics wrong (e.g., validation failed) |\n| 500 Internal Server | Server broke, client did nothing wrong |\n\n**The Header Contract**\n\n```\nContent-Type: application/json         # What I am sending\nAccept: application/json               # What I want back\nAuthorization: Bearer <token>          # Who I am\nCache-Control: no-cache               # Bypass cache\nETag: \"abc123\"                        # Resource version for conditional requests\nIf-None-Match: \"abc123\"               # Send 304 if unchanged\n```\n\n**The Representation Contract**\n\nJSON is the default. XML is acceptable but declining. Form-encoded for simple POSTs. The server must declare what it sends (`Content-Type`). The client must declare what it accepts (`Accept`). Content negotiation is not optional.\n\n## Real Examples\n\n**1. GitHub API**\n\nGitHub's API is the gold standard. `GET /repos/{owner}/{repo}/issues` returns issues. `POST /repos/{owner}/{repo}/issues` creates one. Pagination is handled via `Link` headers, not custom query parameters. Every resource has a consistent URL pattern. The API is versioned in the URL (`/v3/`), not in headers. This is pragmatic REST, not pure REST, but it is excellent.\n\n**2. Stripe API**\n\nStripe built a billion-dollar company on a REST API. Their design philosophy: \"make the right thing easy.\" Create a charge: `POST /v1/charges`. Retrieve it: `GET /v1/charges/{id}`. List charges: `GET /v1/charges`. Refund: `POST /v1/refunds`. Every object has a consistent CRUD pattern. Errors return structured JSON with `type`, `code`, `message`, and `decline_code`. The API is so predictable that you can write a generic Stripe client in any language without knowing the domain.\n\n**3. Twitter/X API v2**\n\nTwitter's v2 API corrected the v1 disaster. V2 uses resource expansion (`expansions=author_id`), field filtering (`tweet.fields=created_at,public_metrics`), and proper pagination tokens. `GET /2/tweets/{id}` returns a tweet. `GET /2/users/{id}/tweets` returns a user's timeline. The design is RESTful: noun-based URLs, consistent JSON structure, predictable errors.\n\n**4. Cloudflare API**\n\nThe API that powers this very build. `GET /zones/{zone_id}/dns_records` lists DNS records. `POST /zones/{zone_id}/dns_records` creates one. `PUT /zones/{zone_id}/dns_records/{record_id}` updates. `DELETE /zones/{zone_id}/dns_records/{record_id}` removes. Every resource is addressable. Every action maps to a standard HTTP method. The API is fully auditable, fully deterministic, and fully scriptable.\n\n**5. Your Browser Right Now**\n\nThe web itself is REST. When you loaded this page, your browser sent `GET /articles/oip-what-is-rest`. The server returned HTML (a representation). The page contains links to other resources. You click a link. The browser sends another GET. No state is stored on the server about your \"session\" unless you explicitly send a cookie. The web is REST's original and most successful implementation.\n\n## Common Mistakes\n\n**Using verbs in URLs.**\n\nWrong: `POST /createUser`, `GET /getUser/42`, `POST /deleteOrder/7`\n\nRight: `POST /users`, `GET /users/42`, `DELETE /orders/7`\n\nThe URL names the resource. The HTTP method names the action. Do not mix them.\n\n**Treating GET as a command.**\n\nGET must not modify state. It must be safe and cacheable. If a GET deletes a resource, every cache, every proxy, every browser prefetch will destroy your data. Never use GET for mutations. Never.\n\n**Returning 200 on errors.**\n\nWrong: `HTTP 200 OK` with body `{\"error\": \"not found\"}`\n\nRight: `HTTP 404 Not Found` with body `{\"error\": \"not found\"}`\n\nStatus codes are part of the contract. Respect them. A monitoring system that checks 200 to determine health will miss every error you bury in a 200.\n\n**Ignoring idempotency.**\n\nIf a client retries a POST because the network timed out, you create a duplicate resource. POST is not idempotent. For operations that must be safe to retry, use PUT with a client-generated ID, or implement idempotency keys. Stripe's `Idempotency-Key: {uuid}` header is the correct pattern.\n\n**Inventing custom headers instead of using standard ones.**\n\nWrong: `X-Request-ID: 12345` (for request tracing, use `Traceparent` or `X-Request-ID` as standard practice is fine, but inventing `X-My-Custom-Token` instead of `Authorization` is not)\n\nUse `Authorization` for auth. Use `Content-Type` for payload type. Use `ETag` and `If-None-Match` for caching. Do not reinvent what already exists.\n\n**Exposing internal IDs or database schemas.**\n\nWrong: `GET /api/v1/getCustomerRecord?table=customers&id=42`\n\nRight: `GET /customers/42`\n\nThe URL is a public interface. It is not a SQL query. Hide the implementation. Expose the intent.\n\n**Ignoring hypermedia.**\n\nMost APIs ignore HATEOAS. They return bare JSON with no links. The client must hardcode URLs. When the API changes, the client breaks. This is not REST. It is HTTP-RPC with JSON. If you want the durability REST promises, include links. Teach the client what it can do next.\n\n## Connection to OIP\n\nOIP — the Open Interface Protocol — is built on the same principles that make REST endure. REST is the spiritual ancestor of OIP's design philosophy. The connection is direct and intentional.\n\n**Open.** REST is open because it uses universal standards. HTTP is not owned by anyone. JSON is not owned by anyone. A REST API can be consumed by any client written in any language on any platform. OIP extends this: not just open standards, but open contracts. Every row in the OIP directory is readable, editable, and verifiable by anyone with permission. There is no hidden behavior. The tool contract is the contract.\n\n**Deterministic.** REST is deterministic because a given request always produces the same response (assuming the resource has not changed). GET `/users/42` today returns the same structure as GET `/users/42` tomorrow. OIP takes this further: every tool invocation is logged, every parameter is validated, every output is predictable from the input. There are no side effects that are not declared. The contract is the code.\n\n**Auditable.** REST is auditable because every interaction is a request-response pair with a URL, a method, headers, and a status code. OIP makes this explicit: every turn, every tool call, every decision is recorded in a ledger. You can reconstruct exactly what happened. You can replay it. You can verify it. The audit trail is not an afterthought. It is the system.\n\nREST taught us that the best protocols are the ones that do the least. OIP follows that lesson. A REST API with three verbs and clear nouns is more powerful than a SOAP API with a hundred custom methods. An OIP directory with clean rows and validated contracts is more powerful than a black-box agent with hidden prompts.\n\nREST is the proof that simplicity scales. OIP is the continuation of that proof into the age of agentic systems. The web is REST. The build is OIP. Both rely on the same truth: **when the interface is clean, the system becomes unstoppable.**\n\n## Connection to the Grain Philosophy\n\nThis protocol is part of the [Open Inventory Protocol](/a/philosophy) — a living system of self-describing voxels that serves the Grain philosophy. The OIP is the interface. The philosophy is the core.\n","claims":[],"sources":[],"voxels":{"slug":"oip-what-is-rest","counts":{"voxels":0,"sources":0,"edges":0},"note":"slim bundle — full voxels at /api/articles/oip-what-is-rest/voxels"},"constitution":{"url":"https://miscsubjects.com/api/articles/constitution"},"provenance":[],"contributions":[],"topology":null,"slim":true,"ledger_totals":{"claims":0,"sources":0,"exported_claims":0,"exported_sources":0},"question_graph":{"slug":"oip-what-is-rest","questions":[],"evidence":[],"edges":[],"counts":{"questions":0,"evidence":0,"edges":0}},"verification":{"provenance":{"valid":true,"entries":0,"head":"genesis"},"sources":{"valid":true,"entries":0,"head":"genesis"}},"counts":{"claims":0,"sources":0,"provenance":0,"contributions":0,"questions":0,"evidence_ingests":0,"voxel_edges":0},"llm_manifest":{"version":"1","site":"https://miscsubjects.com","purpose":"Peptide evidence articles with hash-chained source ledgers, tiered claims, and a question graph. LLMs should READ bundles/URLs and WRITE back via ingest — never invent doses.","read":{"human_page":"https://miscsubjects.com/a/oip-what-is-rest","bundle_json":"https://miscsubjects.com/api/articles/oip-what-is-rest/bundle","bundle_markdown":"https://miscsubjects.com/api/articles/oip-what-is-rest/bundle?format=markdown","topology":"https://miscsubjects.com/api/articles/oip-what-is-rest/topology","question_graph":"https://miscsubjects.com/api/articles/oip-what-is-rest/question-graph","sources":"https://miscsubjects.com/api/articles/oip-what-is-rest/sources","provenance":"https://miscsubjects.com/api/articles/oip-what-is-rest/provenance","contributions":"https://miscsubjects.com/api/articles/oip-what-is-rest/contributions","graph_topology":"https://miscsubjects.com/api/articles/oip-what-is-rest/graph-topology?question={question}","voxels":"https://miscsubjects.com/api/articles/oip-what-is-rest/voxels","constitution":"https://miscsubjects.com/api/articles/constitution","ontology":"https://miscsubjects.com/api/articles/ontology","system_map":"https://miscsubjects.com/api/articles/system-map","system_map_markdown":"https://miscsubjects.com/api/articles/system-map?format=markdown","health":"https://miscsubjects.com/api/articles/oip-what-is-rest/health","repair":"POST https://miscsubjects.com/api/protocol/repair","list_articles":"https://miscsubjects.com/api/articles","graph_canvas":"https://miscsubjects.com/graph.html?slugs=oip-what-is-rest","graph_yield":"https://miscsubjects.com/api/graph?slugs=oip-what-is-rest&layer=yield","obsidian_vault":"https://miscsubjects.com/api/articles/obsidian-vault?slugs=oip-what-is-rest","graph_query":"https://miscsubjects.com/api/v1/query?from=oip-what-is-rest&kind=claim&where=tier=human"},"ask":{"description":"Answer only from topology; creates a question_node with gaps.","api":"POST https://miscsubjects.com/api/protocol/ask","body":{"slug":"{slug}","question":"string"},"imessage":"oip-what-is-rest|your question","router_tag":"[ARTICLE_ASK]oip-what-is-rest|question[/ARTICLE_ASK]","auth":"x-terminal-key header for API; iMessage/WhatsApp via miscsubjects build"},"ingest":{"description":"Parse pasted evidence → source ledger + claims + evidence_ingest node.","api":"POST https://miscsubjects.com/api/protocol/ingest","body":{"slug":"{slug}","evidence":"paste text","question_node_id":"optional qn_..."},"imessage":"ingest oip-what-is-rest|q:{node_id}|paste evidence","router_tag":"[ARTICLE_INGEST]oip-what-is-rest|evidence[/ARTICLE_INGEST]","tiers":["human","preclinical","anecdotal","mechanistic","speculative"]},"claim":{"description":"Prompt-injection style POST — one claim voxel with who_claims + posted_by provenance.","api":"POST https://miscsubjects.com/api/protocol/claim","body":{"slug":"{slug}","text":"one assertion","tier":"human|preclinical|anecdotal|mechanistic|speculative","who_claims":"study author, platform, or model id","source_ids":"optional [s1]"},"imessage":"claim oip-what-is-rest|tier|assertion — who claims it?","router_tag":"[ARTICLE_CLAIM]oip-what-is-rest|tier|assertion[/ARTICLE_CLAIM]","slots":["what_it_is","who_claims_what","what_is_known","what_is_unknown","mechanism","limitations","disclaimer"]},"tiers":{"human":0.8,"preclinical":0.5,"anecdotal":0.3,"mechanistic":0.3,"speculative":0.1},"invariants":["Self-explaining — every API JSON has _self; every paste widget has §SELF; root index at /api/articles/system-map","Append-only — revisions preserved at ?rev=n","Source chain verifies integrity, not truth","Answers must cite claim ids and source ids from topology","Not medical advice"],"constitution":{"version":1,"principle":"Articles are voxel graphs of claims — not prose blobs. Every assertion is a claim atom with tier, weight, source_ids, and posted_by provenance.","slots":[{"id":"what_it_is","required":true,"answers":"What is this peptide/stack/condition?"},{"id":"who_claims_what","required":true,"answers":"Who claims what — study authors, platforms, n=?"},{"id":"what_is_known","required":true,"answers":"What is known with tier labels (human/preclinical/anecdotal)"},{"id":"what_is_unknown","required":true,"answers":"What is NOT known — explicit gaps"},{"id":"mechanism","required":false,"answers":"Proposed mechanism (mechanistic tier only)"},{"id":"limitations","required":true,"answers":"Limits of evidence — no dose advice"},{"id":"disclaimer","required":true,"answers":"Not medical advice"}],"claim_rules":["One claim = one falsifiable assertion. No compound claims.","Every claim must declare tier: human|preclinical|anecdotal|mechanistic|speculative|system.","system tier = architecture/design axioms (not biological mechanism). Use for protocol self-definition.","Sourced claims must cite source_ids from the hash-chained ledger.","Unsourced claims must set source_status: unsourced and why_material.","posted_by is mandatory on every new claim (model id, human, or channel).","No medical advice, no doses, no 'you should take'.","Bad information is retracted (status:retracted), never deleted — retraction event stays on ledger.","Adversary challenges link via challenges[] / challenged_by[] — target may be downweighted.","Leaked secrets are scrubbed to [REDACTED:secret-leak] with scrub_events tombstone — honest audit trail."],"source_rules":["Every source is a voxel edge: type, url, exact quote, summary, found_by, accessed_at.","Sources hash-chain — prev/hash on append.","Anecdotal sources must name platform (reddit|x|youtube|imessage|user_entry)."],"ontology_rules":["Peptide articles (bpc-157, tb-500) are tree roots.","Condition articles (bpc-157-glp1-gut-damage) branch from peptides.","Stack articles (wolverine-stack-glp1) compose peptides — never duplicate peptide mechanism prose.","If an article has no parent embeds and is not a root peptide → sprawl candidate.","Misstep = duplicate scope with another slug; merge or reparent via embeds."],"post_protocol":{"claim":"POST /api/protocol/claim","source":"POST /api/protocol/sources","ingest":"POST /api/protocol/ingest","webhook":"POST /api/articles/<slug>/webhook {kind:claim|source}","imessage_claim":"claim {slug}|{tier}|your assertion — who claims it, source?","imessage_ingest":"ingest {slug}|evidence paste"}},"this_article":{"slug":"oip-what-is-rest","url":"https://miscsubjects.com/a/oip-what-is-rest","bundle_url":"https://miscsubjects.com/api/articles/oip-what-is-rest/bundle?format=markdown"}},"api_urls":{"bundle":"https://miscsubjects.com/api/articles/oip-what-is-rest/bundle","bundle_markdown":"https://miscsubjects.com/api/articles/oip-what-is-rest/bundle?format=markdown","topology":"https://miscsubjects.com/api/articles/oip-what-is-rest/topology","voxels":"https://miscsubjects.com/api/articles/oip-what-is-rest/voxels","constitution":"https://miscsubjects.com/api/articles/constitution","ontology":"https://miscsubjects.com/api/articles/ontology","question_graph":"https://miscsubjects.com/api/articles/oip-what-is-rest/question-graph","ask":"https://miscsubjects.com/api/protocol/ask","ingest":"https://miscsubjects.com/api/protocol/ingest","claim":"https://miscsubjects.com/api/protocol/claim","system_map":"https://miscsubjects.com/api/articles/system-map","system_map_markdown":"https://miscsubjects.com/api/articles/system-map?format=markdown"}}