Updated September 2026 · Written and maintained by the Progression Agency strategy team
A robots.txt checker built for AI crawlers rather than for search engines. Paste your file and see which tokens can reach a given path, which are blocked, and which you have never addressed.
On this page · 12 sections
- One vendor, several crawlers, three different jobs
- What the checker does, and what it deliberately does not do
- The four things it flags for you
- What robots.txt is, and what it is not
- The order of operations when access is the suspected problem
- Using this on client sites and in a build process
- What we would not claim for this tool
- Using this as a robots.txt checker
- The reference tables, in one place
- Everything else we have written on search, AI and getting found
- GPTBot: what it is, and what blocking it actually costs
- Video: crawling, indexing and AI access
The short answerMajor operators run more than one crawler and state a different job for each: one that builds training corpora, one that retrieves pages to answer questions, and one that fetches on a person’s direct request. robots.txt addresses each token separately, so a blanket block aimed at training opt-out usually closes the citation path as well. This checker parses your file the way a crawler does, reports each token by the job its operator states, and flags the four configurations that are almost always accidental.
robots.txt is a voluntary convention, not an enforcement mechanism. Crawler tokens change; each row links to the operator’s own documentation, which is the source of truth rather than this page.
AI crawler access checker
Paste your robots.txt and see which AI crawlers can reach a given path, which are blocked, and which you have never addressed at all. It also flags the two combinations people most often get backwards.
Results appear here.
Runs entirely in your browser. Nothing you paste is uploaded, logged or stored — which is also why it takes pasted text rather than a URL: a browser cannot read another site’s files without that site’s permission.
One vendor, several crawlers, three different jobs
Every practical mistake in a robots.txt comes from treating one AI vendor as one crawler, when the vendor publishes separate tokens for separate purposes.
The mistake almost everyone makes once
A site owner decides they do not want their content used for model training, opens robots.txt, blocks everything that looks like an AI company, and assumes the job is done. What usually happens instead is that the retrieval crawlers get blocked too — the ones that fetch a page in order to answer a question and cite the source. The training opt-out was achieved and the citation path was closed along with it.
The tokens are separate because the jobs are separate
Major operators publish more than one user agent and state a different purpose for each: a crawl that builds training corpora, a crawl that maintains an index used to answer questions, and a fetch triggered directly by a person in a session. robots.txt addresses each token independently, which means you can allow one and refuse another. The checker groups them by the job the operator states so the two decisions stay apart.
Which is the decision worth making deliberately
Training opt-out is a legitimate position and it costs nothing in visibility. Blocking retrieval is a different choice with a direct cost: it removes the mechanism by which your page could be quoted and linked. Making both at once, by accident, is the outcome this tool exists to prevent.
What the checker does, and what it deliberately does not do
It parses the file the way a crawler does and answers one question: which tokens can reach the path you give it.
It parses the file the way a crawler does
Groups are formed by consecutive User-agent lines, comments are stripped, and path rules are resolved by specificity: the longest matching pattern wins, and where an Allow and a Disallow match with equal specificity the Allow takes precedence. Wildcards and end-of-path anchors are handled. A token with no matching group falls back to the catch-all group, and a token with no catch-all group either is reported as unaddressed rather than as allowed by omission.
It takes pasted text rather than a URL
A browser cannot read another origin’s files without that origin’s permission, so any tool claiming to check your robots.txt from a URL is either proxying it through a server or not doing what it says. We would rather ask you to paste twenty lines than route your site through our infrastructure to save you a copy and paste.
It does not tell you what to block
That is a commercial and editorial decision that depends on what your content is worth to you, and it is not the same answer for a news publisher and a plumbing company. What the tool gives you is an accurate picture of what your current file actually does, which is usually different from what the person who wrote it believed.
It links to each operator’s own documentation
Tokens are added, renamed and split over time. Every crawler in the table links to the operator’s own page where one exists, because that page is the source of truth and this one is not.
The four things it flags for you
Four configurations are surfaced automatically because they are almost always accidental, and one of them outranks every other finding on the page.
A search crawler blocked on the path you tested
This outranks every other finding. If search crawling is blocked, the page is out of the search index, and anything assembled from that index — including AI Overviews — has nothing to draw on. We surface it first because it is both the most damaging and the easiest to cause by accident during a staging-to-production move.
A training token blocked while retrieval stays open
Flagged as informational rather than as a problem, because it is usually exactly what the site owner intended and rarely what their file actually says. Seeing it confirmed is the point.
Retrieval blocked while training stays open
The reverse combination, and almost never deliberate. It gives away the thing you were presumably trying to protect while closing the thing you presumably wanted.
No catch-all group at all
Without a User-agent: * group, every crawler you have not named is unrestricted. That may be fine. It should be a decision rather than an oversight.
What robots.txt is, and what it is not
It is a request honoured by well-behaved crawlers, not a control, and it governs future crawling rather than what is already known.
It is a request, not a control
The file is a convention. Well-behaved crawlers read it and comply; others do not, and nothing in the file prevents a fetch. If content genuinely must not be retrieved, the mechanism is authentication or server-side blocking, not a text file asking politely.
It governs crawling, not what is already known
Blocking a crawler today does not remove what was crawled previously, and it does not affect material about you published elsewhere. Directory entries, reviews, press and third-party pages describing your business are all outside your robots.txt entirely.
It is edited by people who are not you
Developers, plugins, migrations and hosting panels all write to this file. In our audit work it is the single most common source of a visibility change nobody can explain, because nobody remembers touching it. Re-checking after any deployment is cheap insurance.
Where this sits in the wider picture
Access is the first of several gates. How AI search works sets out the rest, and our audit covers the ones a text file cannot reach.
The order of operations when access is the suspected problem
Start with the file because it is free and fast, then confirm what actually happened, then look past access entirely.
Start with the file, because it is free and fast
If visibility has changed and nobody can explain it, robots.txt is the cheapest thing to rule out. It takes a minute, it needs no tooling beyond this page, and in our audits it is the single most common cause of a change nobody remembers making.
Then confirm what actually happened, not what was requested
The file records what you asked crawlers to do. Search Console records what one crawler actually did. Those are different questions and a mismatch between them is itself a finding — a permissive file with pages excluded in Search Console points at something other than access.
Then look past the file entirely
Access is one gate. A page that returns the wrong status code, renders its content only after JavaScript runs, canonicalises to a different URL or is missing from the sitemap will be absent from answers with a perfectly permissive robots.txt. Those are audit findings rather than checker findings, and we say so rather than implying the tool covers them.
Want this done for your site?We build and maintain the search, content and paid programmes described on this page.
Using this on client sites and in a build process
There is no licence and no attribution requirement, and the highest-value use is a deployment check rather than an annual one.
Nothing here restricts commercial use
There is no licence to agree to, no attribution requirement and no sign-up. If it is useful in client work, use it in client work. A link back is welcome and not expected.
Make it a deployment check rather than a memory test
The reason this file drifts is that it is written by build processes, plugins and hosting panels rather than by the person responsible for visibility. Putting a robots.txt diff into your release checklist catches the problem at the moment it is introduced rather than a quarter later.
Keep a copy of the file you intended
A saved reference version makes every future check a comparison rather than a fresh judgement, and it makes an unexplained change immediately visible instead of requiring someone to re-derive what the file was supposed to say.
What we would not claim for this tool
Three things a clean result here does not tell you, stated plainly so a green row does not imply an outcome.
It does not predict whether you will be cited
Access is necessary and nowhere near sufficient. A perfectly permissive file on a page nobody would quote produces no citations at all, and we would rather say that plainly than let a green row imply a result.
It does not know about tokens that did not exist when it was written
New crawlers appear. The table covers the tokens we see in real files today, each linked to its operator’s documentation, and a token we have never heard of is simply not evaluated.
It does not detect crawlers that ignore the file
Nothing reading robots.txt can. Identifying traffic from crawlers that do not honour it is a server log exercise, not a text-parsing one.
Using this as a robots.txt checker
A general robots.txt check confirms the file parses and that search crawlers are not blocked. This one answers the AI-specific question that a general checker does not ask.
What a general robots.txt check covers
Most robots.txt checkers were written for one job: confirm the syntax is valid and that Googlebot is not blocked from anything important. That is worth doing and several free tools do it well. What none of them do is tell you which AI crawler tokens your file admits, because those tokens did not exist when the tooling was written.
What this adds
The same parse, then a per-token verdict for twenty-one AI crawlers grouped by the job the operator states for each. A file can be perfectly valid, pass every syntax check, and still close the retrieval path you meant to keep open — and no conventional robots.txt check reports that.
Use both
Run a syntax check to confirm the file is well-formed, then run this to see what it does to the crawlers that decide whether you can be quoted. They answer different questions and neither replaces the other.
The reference tables, in one place
Four tables follow: the tokens the checker knows about, how rule precedence is resolved, what blocking each class of token actually achieves, and the re-check triggers. They summarise the sections above and are meant to be usable on their own.
| Operator | Token | Stated job | Cost of blocking it |
|---|---|---|---|
| OpenAI | GPTBot | Training | None in visibility terms |
| OpenAI | OAI-SearchBot | Retrieval | High — closes the citation path |
| OpenAI | ChatGPT-User | User-triggered fetch | Moderate — a person asked for it |
| Anthropic | ClaudeBot | Training | None in visibility terms |
| Anthropic | Claude-User | User-triggered fetch | Moderate — a person asked for it |
| Anthropic | Claude-SearchBot | Retrieval | High — closes the citation path |
| Perplexity | PerplexityBot | Retrieval | High — closes the citation path |
| Perplexity | Perplexity-User | User-triggered fetch | Moderate — a person asked for it |
| Google-Extended | Training opt-out token | None in visibility terms | |
| Googlebot | Search index | High — removes you from search | |
| Microsoft | Bingbot | Search index | High — removes you from search |
| Apple | Applebot | Search index | High — removes you from search |
| Apple | Applebot-Extended | Training opt-out token | None in visibility terms |
| Amazon | Amazonbot | Crawl | None in visibility terms |
| Meta | meta-externalagent | Crawl | None in visibility terms |
| Common Crawl | CCBot | Open dataset crawl | None in visibility terms |
| ByteDance | Bytespider | Crawl | None in visibility terms |
| Cohere | cohere-ai | Crawl | None in visibility terms |
| Diffbot | Diffbot | Crawl | None in visibility terms |
| Timpi | Timpibot | Crawl | None in visibility terms |
| Webz.io | omgilibot | Crawl | None in visibility terms |
| Situation | Resolution | Why |
|---|---|---|
| Several groups name the same agent | The most specific agent match is used | Crawlers use the most specific group |
| No group names the agent | The catch-all group applies | Standard fallback behaviour |
| No catch-all group either | Reported as unaddressed | Default is permitted, but say so explicitly |
| Allow and Disallow both match | The longer pattern wins | Specificity decides |
| Equal-length Allow and Disallow | Allow wins | The documented tie-break |
| No rule matches the path | Permitted | Absence is permission |
| A wildcard or end anchor appears | Matched literally around the wildcards | Standard pattern handling |
| Class | Achieves | Does not achieve | Visibility cost |
|---|---|---|---|
| Search crawler | Removal from search over time | Nothing good | Severe |
| Retrieval crawler | Fewer live fetches for answers | Training opt-out | High |
| User-triggered fetcher | Blocks fetches a person asked for | Training opt-out | Moderate |
| Training token | A stated training opt-out | Removal from answers | None |
| Open dataset crawler | Exclusion from that dataset going forward | Removal of past copies | Low |
| Everything at once | All of the above | Anything selective | Severe |
| Nothing | Nothing | Any opt-out | None |
| Trigger | Why | Frequency |
|---|---|---|
| After any deployment | Build processes rewrite robots.txt | Every time |
| After a migration | Staging files carry Disallow: / into production | Every time |
| After installing an SEO plugin | Several manage this file | Every time |
| After a hosting change | Panels can inject their own rules | Every time |
| When a vendor publishes a new token | The file cannot cover what did not exist | As announced |
| When visibility changes unexplainably | This is the first file to check | Immediately |
| Routinely | Drift is silent | Quarterly |
Everything else we have written on search, AI and getting found
GPTBot: what it is, and what blocking it actually costs
GPTBot is OpenAI’s training crawler. It is the token most people mean when they say they want to block AI from their site, and it is also the one most often blocked by mistake.
Blocking GPTBot opts you out of training. It does not remove you from ChatGPT’s answers, because answering a question uses a different user agent entirely. Conflating the two is the single most expensive misunderstanding in this file.
The three OpenAI tokens, and what each one does
- GPTBot: crawls to build training corpora. Blocking it is a data-licensing decision.
- OAI-SearchBot: crawls so ChatGPT can surface and cite pages. Blocking it removes you from citations.
- ChatGPT-User: fetches a page because a person asked for it in a session. Blocking it breaks a user’s direct request.
- They are separate tokens and robots.txt treats them separately, so a blanket block hits all three.
What blocking GPTBot does and does not do
- Does: signal that your content should not be used to train future models.
- Does not: remove you from answers ChatGPT gives today.
- Does not: affect Google, Bing, or their AI features, which use their own tokens.
- Does not: enforce anything, because robots.txt is a voluntary convention rather than a fence.
The configuration most people actually want
If the goal is to stay out of training while remaining citable, block GPTBot and allow OAI-SearchBot and ChatGPT-User. If the goal is maximum visibility, allow all three. What almost nobody wants, and what a blanket disallow produces, is being invisible in answers while your content was already trained on years ago.
| Token | Stated job | Blocking it means | Affects citations? |
|---|---|---|---|
| GPTBot | Training data collection | Opting out of future training | No |
| OAI-SearchBot | Retrieval for search and citation | Removing yourself from ChatGPT citations | Yes |
| ChatGPT-User | Fetching a page a user asked for | Breaking a direct user request | Yes |
| User-agent: * | Everything unnamed | All of the above at once | Yes |
Getting found in search
- SEO company Las Vegas
- Texas SEO company
- SERPRobot review
- Ranktracker review
- Nightwatch review
- SEO company in Dallas
- SEO company in Oakland
- SEO company in Denver
- SEO company in Houston
- SEO company in Charlotte
- SEO companies by city
- Web design companies by city
- SEO company in Hawaii
- SEO for HVAC services
- Statewide SEO services
- Small business SEO
- SEO experts
- SEO pros and cons
- What is corporate SEO?
- Does URL length affect SEO?
- Meta description length
- SEO services
- SEO agency
- What are SEO services?
- What is SEO?
- Buyer personas
- Retail market research
- Local SEO services
- Local search
- Claiming a business profile
- Local SEO vs national SEO
- SEO company in New Jersey
- SEO agency NYC
- Affordable SEO services
- SEO pricing: what drives the cost
- SEO company in Iowa
- SEO company in Maine
- SEO company in Idaho
- SEO company in Kentucky
- SEO company in Alabama
- SEO company in Louisiana
- SEO company in Indiana
- SEO company in Arkansas
- SEO company in Delaware
- SEO company in Connecticut
- SEO company in Massachusetts
- SEO company in Colorado
- SEO company in Maryland
- SEO company in Minnesota
- SEO company in California
- Best SEO company for small business
- SEO audit service
- SEO packages and pricing
- SEO pricing guide
- How long does SEO take?
- How to rank higher on Google
- Website not showing up on Google
- Google Business Profile not showing up
- How to set up a Google Business Profile
- Why is my website not getting traffic?
- SEO content writing service
- Shopify SEO services
- How to get more Google reviews
- Google review removal
- SEO for dentists
- SEO for doctors
- SEO for roofers
- SEO for plumbers
- SEO for HVAC companies
- SEO for chiropractors
- SEO for therapists
- SEO for landscapers
- SEO for med spas
- Best rank tracking tools
- Pro Rank Tracker review
- SERPWatcher review
- SEO tools for small business
- Instagram SEO
- Saving Instagram drafts
- Checking Instagram interactions
- Instagram hashtags
- TikTok profile views
- Finding TikTok drafts
- Snapchat filters and Lenses
- Organic SEO services
- SEO company in Portland
- SEO company in Kent, WA
- Ecommerce SEO services
- Customer data platforms
- Selling on Target Plus
- SEO for fintech
- SEO company in Atlanta
- Search engine marketing agency
- SEO company in Illinois
- Fairfax SEO company
- Oregon SEO
- Medford SEO
- Bend SEO
- Springfield, Oregon SEO
- Oregon City SEO
- Bellevue SEO
- Video for local SEO
- SEO diagrams
- Boca Raton SEO company
- Winery SEO
- Seattle SEO companies
AI, AEO and what is changing
- GEO vs SEO
- How AI will affect SEO
- AI automation agency
- AI automation cost
- AI customer service
- AI in digital advertising
- AI for email marketing
- AI for restaurant social media
- Generative engine optimization agency
- AI visibility best practices
- Answer engine optimization agency
- AEO vs GEO vs LLM SEO
- LLM SEO: the technical side
- How to rank in ChatGPT
- AI visibility tools compared
- AI visibility audit
- AI SEO agency
- AI search statistics, traced
- AI SEO in New York
- AEO vs SEO: what transfers
- AEO pricing: what it costs
- AEO agency: how to choose one
- What is AEO? Defined
- AEO services: what you receive
- AEO audit: the full checklist
- AI search optimization: two engines
- AEO tools: which class you need
- LLM visibility: what it measures
- Why AI recommends your competitor
- AEO search landscape: original dataset
- How AI search works: the pipeline
- How to get cited by AI: nine moves
- AEO myths: twelve claims assessed
- How long AEO takes
- Local AEO: why it differs
- Enterprise AEO: the real blockers
- AI visibility trackers vs rank tracking
- Why AI visibility dropped
- AEO content writing: six rules
- AEO for small business: where to start
- AI answers vs organic search
- AEO experts: the six skills
- AEO pros and cons
- AEO and paid search together
- URLs and AI citation
- AEO for dentists
- AEO for doctors
- AEO for plastic surgeons
- AEO for chiropractors
- AEO for therapists
- AEO for med spas
- AEO for fintech
- AEO for plumbers
- AEO for roofers
- AEO for HVAC
- AEO for landscapers
- AEO for hotels
- AEO for wineries
- AEO for ecommerce
- Free tool: AI crawler access checker
- Free tool: llms.txt generator
- Free tool: schema vs copy validator
- Free tool: extractable content checker
- Free tool: AI visibility prompt builder
- Free tool: schema markup generator
- Free tool: ROAS and break-even calculator
- Free tool: AI visibility checker
- Free tool: Google Ads search terms auditor
- Free tool: Google Business Profile and NAP audit
- AI SEO agency, Austin
- AI SEO agency, Los Angeles
- AI SEO agency, Miami
- AI SEO agency, Phoenix
- AI SEO agency, Philadelphia
- AI SEO agency, Boston
- AI SEO agency, Dallas
- AI SEO agency, Chicago
- AI SEO agency, Houston
- AI SEO agency, Denver
- AI SEO agency, Seattle
- AI SEO agency, Atlanta
Paid media and lead generation
- Estimating landscaping jobs
- WordPress developers Los Angeles
- Digital marketing agency San Jose
- Google Business Profile posts
- Humor in advertising
- Competitors bidding on your brand
- Traffic dropped after redesign
- Rising cost per lead
- Inquiries that never buy
- Agency red flags
- Briefing an agency
- Retainer or project
- SEO and Google Ads together
- Switching agencies
- Marketing agency contracts
- Is my agency doing a good job
- Why competitors outrank you
- Why rankings dropped
- Traffic but no leads
- Instagram marketing agencies
- Marketing automation software
- Hotel PPC agency
- Freebie ideas and lead magnets
- Angi for contractors
- Email marketing for home services
- Direct mail marketing
- Lead generation websites
- Dental lead generation
- Search engine advertising
- Display advertising
- Search Ads 360
- Organic search vs paid search
- Are Google Ads worth it?
- How to stop Google Ads
- Google Ads vs Facebook Ads
- Social media advertising
- What batch work is
- Free tools for service businesses
- What digital presence is
- Website visitor tracking
- Email marketing examples
- Fear-based advertising
- The annual business review
- Twitter alternatives
- Lead generation agency
- Contractor lead generation
- Solar leads
- What is lead generation?
- What is a funnel in marketing?
- Cost per lead benchmarks
- Performance marketing agency
- What is appointment setting?
- Search ad conversion rate trends
- PPC agency
- HVAC leads
- Social media marketing pricing
- Digital advertising agency
- Media buying vs media planning
- Choosing a marketing company
- CRM software examples
- Global marketing companies
- Buc-ee’s marketing analyzed
- Product launch ideas
- Hulu and streaming advertising
- Advertising agency in Houston
- Dentist PPC
- Facebook ads agency
- Meta Business Partners
- Google Ads management agency, San Francisco
- Shopify PPC agency
- Roofing Google Ads agency
- Digital ads 101
- Meta ad specs
Websites and design
- Hire PHP developers
- Bankruptcy lawyer website design
- Web design in North Carolina
- Web design in Seattle
- Ecommerce web development
- Ecommerce development services
- Squarespace customization
- Consulting websites
- Beauty stores on Shopify
- Content commerce
- 404 and bad request errors
- FTP clients
- Website design and development
- Design, development and management
- Creating a gallery
- Custom CSS
- Summary blocks
- Website maintenance services
- Web design agency, San Jose
- WordPress outsourcing
- StoryBrand website framework
- StoryBrand websites
- StoryBrand website design
- Squarespace logos
- Product configurators
- Web development services
- How much does a website cost?
- What to include on a homepage
- Website redesign services
- Website maintenance
- Shopify ecommerce agency
- Ecommerce website design
- BigCommerce vs Shopify
- Service business website design
- Healthcare website design
- Websites for restaurants
- Squarespace design services
- Squarespace vs WordPress
- Wix vs WordPress
- Web design in Queens
- Web design for small business
- Shopify agency
- Shopify checkout optimization
- Headless commerce and Hydrogen
- Shopify pricing guide
- Shopify checkout extensibility
- Squarespace pricing
- Publishing a Squarespace site
- What Squarespace is
- Learning Squarespace
- Squarespace dropdown menus
- Domain vs website
- Videography websites
- Ecommerce product configurators
- Negative space in design
- YouTube channels for web designers
- How to back up a Squarespace website
- Best dental websites
- Website dimensions and image sizes
- Web design in Charlotte NC
- Web design in Nashville
- Web design in Seattle
- Web design in Atlanta
- Retail consulting
- Product design agencies
- Digital product agencies
Choosing and working with an agency
- Marketing agencies in NYC
- Digital marketing agency NYC
- Digital marketing in Atlanta
- Digital marketing in Connecticut
- Digital marketing in Oklahoma City
- Nonprofit marketing agency
- Pharmaceutical marketing agency
- MSP marketing agency
- App development agency
- Growth tools for startups
- How to choose a digital marketing agency
- What does a marketing agency do?
- What does a digital marketing agency do?
- Marketing agency pricing
- What does retention mean?
- How to calculate success rate
- What does backlog mean?
- Best marketing agency
- Branding services for small businesses
- Fashion consulting
- Triadic color schemes
- The 8 principles of design
- How to write a brochure
- TikTok Wrapped: what actually exists
- Full-service marketing agency
- Marketing agencies in Philadelphia
- Agencies in Portland, Oregon
- Boutique marketing agency
- Marketing agency for small business
- Digital marketing services
- Digital marketing agency in New Jersey
- Fractional CMO services
- What is a fractional CMO?
- About Progression Agency
- Startup marketing agency
- Marketing agency in Tampa
- Marketing agency in San Diego
- Digital marketing in Florida
- Marketing agency in Nashville
- Marketing agency in Portland
- Client testimonials
- Contact us
- Marketing agency near me
- Online reputation case studies
- Digital marketing agency, Dallas
- Orlando digital marketing agency
- Advertising agencies in Westchester
- Water damage restoration leads
- General contracting leads
- Home inspection leads
- Spray foam insulation leads
- Mold remediation leads
- Digital marketing agency in Toronto
- Digital marketing internships
- Marketing consulting firms
- Marketing agency in Austin
- Advertising agency, Columbus
- Advertising agency, Charlotte
- Digital transformation consulting
- Ethos in advertising
- Sales promotion examples
- Experiential marketing agency
- Marketing strategy
- Small business marketing
- Brand awareness for professional services
- Healthcare strategy consulting
- Digital healthcare marketing
Social, content and brand
- Create a LinkedIn business page
- Editing Instagram Reels after posting
- Reordering Instagram highlights
- Trending Reels audio
- TikTok trends this week
- Instagram active times
- Instagram posting guide
- TikTok video length
- Instagram Reel length
- TikTok pay per view
- YouTube pay per view
- Why people use social media
- Buffer review
- Social media agency in Denver
- Social media agency in Chicago
- Publicity vs public relations
- Specialist PR agencies
- PR for startups
- PR firms in Pittsburgh
- Influencer marketing guide
- Reputation management in NYC
- Brand advertising case studies
- Logo design in New Jersey
- Documentary interview questions
- Video production in Washington DC
- Video production in Jacksonville
- Video production in West Palm Beach
- Wellness photography
- Public domain image sites
- Social media marketing
- Manufacturing social media marketing
- Social media marketing tips
- Managing a business social account
- Social media and marketing trends
- Social media food marketing
- Influencer marketing agency
- Video marketing agency
- Creative agency
- What branding costs
- What color represents strength
- Branding agency
- Graphic design
- Choosing a color palette
- Medical logo design
- Hospitality branding agency
- Can a brand own a color?
- Iconography definition
- Storytelling in marketing
- Brand consistency for small business
- Life coach website design
- Insurance branding agency
- Advertising mascots
- Event marketing agency
- Email marketing service
- The Progression blog
- Video production company NYC
- What does a video production company do?
- Video production near me
- How to make a film
- Micro-documentaries
- LED volume walls
- LED video wall rental
- AV companies, Washington DC
- Grip and electric
- Documentary filmmaking
- Post-production
- Production technology
- Real estate videography
- Film production in Florida
- Finding a web design studio
- Growing a painting business
- Business vlogs
- Social media trends this week
- B2B social media agency
- Automotive social media marketing
- Saving Instagram Stories as drafts
- What is guerrilla marketing?
- Video production services
- How green screen works
- Social media management fees
- Outsourcing social media
- Film production companies
- What video production costs
- Corporate video production
- Adding music to a Canva video
- Video production in Tampa
- Public relations agency
- PR agency in NYC
- Crisis management PR
- What is a backgrounder?
- PR firms in Austin
- Public relations in Dallas
- PR firms in Chicago
- Beauty PR agency
- Event PR firms
- PR firm services
- Crisis communications
- Media training, New York
- Healthcare PR questions
- Nonprofit public relations
- B2B PR agencies
- PR for venture-backed startups
- Proactive and reactive outreach
- Sports PR and athlete branding
- Mobile app PR agency
- Arts and culture PR
- Lifestyle PR
- Executive brand building
By industry and by situation
- Minneapolis marketing agency
- Web design San Antonio
- Telecom marketing agency
- Starting a graphic design business
- Sales personality types
- Retail competitive analysis
- What is product mix?
- What is BNI?
- When your market shifts
- Virtual conference best practices
- Landscaping profit margins
- Landscaping business structure
- Landscaping marketing
- Pest control marketing
- Nonprofit marketing
- How to get more customers
- Marketing ideas for small business
- Marketing plan template
- Roofing marketing agency
- Marketing agency for contractors
- Landscaping marketing agency
- Auto dealer marketing agency
- Med spa marketing agency
- Chiropractic marketing agency
- Marketing agency for accountants
- Restaurant marketing agency
- Tech marketing agency
- Cannabis marketing agency
- Real estate marketing agency
- Medical marketing agency
- SEO agency Los Angeles
- SEO company in Seattle
- Kitchen remodeling marketing
- Bathroom remodeling marketing
- Bathroom remodeling leads
- What does a PR firm do?
- Jewelry marketing agency
- What is a sizzle reel?
- B2B PR agency
- Data center marketing
- Credit union marketing agency
- Marketing agency in Detroit
- Google Business Profile optimization
- Google Business Profile logo size
- SEO for plastic surgery practices
- Hotel SEO and direct bookings
- SEO agencies in Florida
- What is considered a small business?
- Digital marketing agency in Los Angeles
- Marketing agency in Columbus, Ohio
- Film production company
- SEO myths
- Brand activation
- Experiential marketing, Los Angeles
- Web design in Columbus, Ohio
- Marketing agency in Charleston, SC
- Logo design in Nashville
- Shopify jewelry stores
- What makes a small business website work
- What is a burner account?
- Car videography and cinematography
- How often to post on social media
- Digital marketing in Sarasota
- Marketing agencies in Atlanta
- Squarespace templates explained
- Contractor leads in Colorado
- SEO company in Washington DC
- Google Business Profile verification
- Law firm video production
- Press release examples
- Advertising agency in Raleigh NC
- WordPress developers in NYC
- PR firms in Austin, Texas
- SEO in Portland, Oregon
- Houston ad agencies
- B2B SaaS marketing agency
- Cybersecurity marketing agency
- B2B intent data providers
- Marketing for home builders
- How to start a landscaping business
- Oregon business licensing
- Landscaping contract template
- Attracting high-income clients
- Human Design coaching explained
Want the rest of the access picture checked
The file is the first gate, not the only one. We run the full access audit — rendering, status codes, canonicalisation, sitemap accuracy and the entity records outside your site.
Not sure which of these applies to you?Tell us the situation and we will say plainly what we would do first, and what we would not.
Video: crawling, indexing and AI access
Background viewing only. The token model and the flag logic above are written out in full and are not drawn from these.
Weekly Report: PepsiCo's AI agency review signals a shift from experiments to infrastructure
Ad Age · 2026-08-20This AI Tool Does Keyword Research For You
Ahrefs · 2026-07-08How to get your product data holiday ready on Google Merchant Center
Google Ads · 2026-08-19Claude Cowork for Marketing: Turn Customer Data Into Copy That Converts
HubSpot Marketing · 2026-08-03The Only Marketing Strategy You Need To Master This Year
Neil Patel · 2026-08-20Frontier Brief: What to do now that marketing has lost the plot
Think with Google · 2026-08-24Weekly Report: Dollar Tree shifts to emotional branding as it eyes $1 billion in untapped sales
Ad Age · 2026-08-13I Used AI Agents to Replace Our Marketing Agency
Ahrefs · 2026-06-10How to measure store visits and sales in Google Ads Performance Max
Google Ads · 2026-08-10How to Use Instagram Instants for Business (Step-by-Step Guide)
HubSpot Marketing · 2026-07-29The Only Marketing Strategy That Is Working In 2026
Neil Patel · 2026-08-12The New Era of Agency Partnerships: What Marketers Want in 2026
Think with Google · 2026-08-06Why marketers chase active demand and miss the passive majority, with Indeed's CMO
Ad Age · 2026-08-12Why I Switched from ChatGPT to Claude
Ahrefs · 2026-06-03How to set up Performance Max for store goals in Google Ads
Google Ads · 2026-08-10How to Set Up Your LinkedIn Profile in just 10 Minutes (Using AI)
HubSpot Marketing · 2026-07-27I'm Betting My Entire Marketing Strategy On This One Shift
Neil Patel · 2026-08-05Why Marketers Have Lost the Plot in the Age of AI
Think with Google · 2026-08-06Turning consumer signals into campaigns that work, with Kayak's senior VP of brand marketing
Ad Age · 2026-08-05Your AEO Strategy + Action Plan Checklist | 4.2. AEO Course by Ahrefs
Ahrefs · 2026-05-18Community Q&A: August 17 bidding update
Google Ads · 2026-08-05I Built a Complete AI Email Marketing System in 16 Minutes (Prompts Included)
HubSpot Marketing · 2026-07-21The TikTok Shop Strategy Nobody Talks About
Neil Patel · 2026-07-15Frontier Brief: What it takes to lead marketing at Google during the AI revolution
Think with Google · 2026-08-03Meet the Calvin Klein CMO using 'entertainment mentality' to turn culturally resonant campaigns i…
Ad Age · 2026-07-29How to Track AI Traffic in GA4 and Ahrefs Web Analytics (ChatGPT & More) | 4.1. AEO Course by Ahrefs
Ahrefs · 2026-05-18Google Ads Spending Limits: Master Your Daily Budget [Tutorial]
Google Ads · 2026-08-035 Social Media Trends Actually Working in 2026 (HubSpot Report)
HubSpot Marketing · 2026-07-14The One-Person Marketing Era Has Officially Begun
Neil Patel · 2026-07-08Inside Nescafé's Global YouTube Creator Strategy with Zach King | Nescafé
Think with Google · 2026-07-29Lessons from America's Hottest Brands
Ad Age · 2026-07-22YouTube SEO for AI Search: How to Rank your YouTube Videos | 3.3. AEO Course by Ahrefs
Ahrefs · 2026-05-13Fix disapproved Google Ads: A guide to Personalized advertising compliance
Google Ads · 2026-08-03The Free AEO Tool Stack to get Your Brand Promoted By AI
HubSpot Marketing · 2026-07-08How I Would Master Social Media in 2026 (If Starting From Zero)
Neil Patel · 2026-06-03Best of Frontier CMO: The Audience is in Charge with Colin and Samir
Think with Google · 2026-07-23Weekly Report: Starbucks' Culture Play, Predictive AI Targeting, Emmy-Nominated Ads
Ad Age · 2026-07-16Brand Mentions for SEO: How to Get Cited by AI (3 Tiers) | 3.2. AEO Course by Ahrefs
Ahrefs · 2026-05-13Google Call Ads: Supplemental Terms & Compliance
Google Ads · 2026-08-03How to Create a WhatsApp Chatbot for Your Business (No Coding)
HubSpot Marketing · 2026-07-065 Signs Your AI SEO Strategy Is About to Take Off
Neil Patel · 2026-05-27Frontier Brief: Liquid Death’s unexpected recipe for marketing success
Think with Google · 2026-07-202026 ad budget check-in: where media money’s moving, with Brandon Doerrer
Ad Age · 2026-07-10How to Optimize Content for AI Search Engines | 3.1. AEO Course by Ahrefs
Ahrefs · 2026-05-13Google Ads Asset Studio: AI Tools & Asset Management Guide
Google Ads · 2026-08-03I Charge $2,000 for This Content Strategy (Copy Me)
HubSpot Marketing · 2026-06-29The Old SEO System Is Collapsing. Here's What Replaces It.
Neil Patel · 2026-05-20Lightning in a Can: Liquid Death’s Killer Creative
Think with Google · 2026-07-09Why data, not AI, is driving local travel marketing decisions, with Vrbo's VP of marketing
Ad Age · 2026-07-08Keyword & Prompt Research for AI SEO (AEO) | 2.2. AEO Course by Ahrefs
Ahrefs · 2026-05-06Create effective Search ads: Responsive search ads for success (2026)
Google Ads · 2026-08-03How to Run ChatGPT Ads: The Complete Tutorial
HubSpot Marketing · 2026-06-225 AI CEOs Said the Same Thing About 2026 (Marketing Changes Forever)
Neil Patel · 2026-05-13Frontier Brief: What CMOs can learn from McLaren’s race to the top
Think with Google · 2026-06-29Why retailers should sell experiences, not products, with Macy's CMO
Ad Age · 2026-07-01How to Run a Brand Gap Analysis | 2.1. AEO Course by Ahrefs
Ahrefs · 2026-05-05How to Link accounts to your Google Ads Manager Account – Step-by-Step process
Google Ads · 2026-07-30How to Optimize Your Profile for LinkedIn's New AI Algorithm
HubSpot Marketing · 2026-06-17The Marketing Opportunity of a Decade (But Not for Long)
Neil Patel · 2026-04-22Will AI take the soul out of creative? 🎬
Think with Google · 2026-06-29What brands are missing in sports sponsorship, with Just Women's Sports Founder
Ad Age · 2026-06-24What Is AI Visibility? The 3 Types Every Marketer Needs to Know | 1.3. AEO Course by Ahrefs
Ahrefs · 2026-04-29Community Q&A: Measurement in the AI era & AI Max
Google Ads · 2026-07-29From Apartment Startup to Luxury Tech Brand
HubSpot Marketing · 2026-06-15How to Save Your Marketing Job (Stop Reporting Traffic)
Neil Patel · 2026-04-03Exclusive look at Google’s Cannes Creative House 🚪✨
Think with Google · 2026-06-25From instinct to evidence: Solving marketing's growth paradox
Ad Age · 2026-06-22How AI Search Engines Work | 1.1. AEO Course by Ahrefs
Ahrefs · 2026-04-29Google Ads: Sexual content policy guide (What’s allowed?)
Google Ads · 2026-07-226 AEO Trends To Get Your Brand Recommended By AI (2026 HubSpot Report)
HubSpot Marketing · 2026-06-10You Don't Have an SEO Problem. You Have a "Brand Entity" Problem.
Neil Patel · 2026-03-25Frontier Brief: Marketing is a hot mess right now—and Mark Ritson is actively tearing it apart
Think with Google · 2026-06-24CMOs on CMOs: Hippo and Solo Stove on AI and grassroots marketing tactics
Ad Age · 2026-06-19Answer Engine Optimization (AEO) Course by Ahrefs: What is AEO?
Ahrefs · 2026-04-29Community Q&A: The bidding & budgets special
Google Ads · 2026-07-22How to Use Substack as a Complete Beginner in 2026 (Full Tutorial)
HubSpot Marketing · 2026-06-08Why 98% of Websites Don't Make Money (It’s Not the Design)
Neil Patel · 2026-03-12Mark Ritson on Why the Fundamentals Still Win
Think with Google · 2026-06-04How the Cadillac F1 team is racing to define its brand and fan strategy
Ad Age · 2026-06-17How This Site Beat Amazon in Google Search (3 Step Strategy)
Ahrefs · 2026-04-01GCLID Explained: What is a GCLID?
Google Ads · 2026-07-16How to Scale a Skincare Brand (Marketing Breakdown)
HubSpot Marketing · 2026-05-28You're Wasting Money Trying to Get B2B Clients
Neil Patel · 2026-03-04Philipp Schindler at Google Marketing Live 2026
Think with Google · 2026-05-21Best World Cup campaigns and the new sports marketing playbook, with Tim Nudd and Jon Springer
Ad Age · 2026-06-12How to Pick a Niche If You’re Just Starting Out (SEO)
Ahrefs · 2026-03-04How to use Google Keyword Planner: Find the Best Keywords for Your Business (2026 Guide)
Google Ads · 2026-07-15How to Build Your First AI Agent (Step-by-step Tutorial)
HubSpot Marketing · 2026-05-26Amazon Just Became the Google of Streaming Ads
Neil Patel · 2026-02-25Evolving a media network to meet growing advertiser demands with Marriott's Chris Norton
Ad Age · 2026-06-10Keyword Research Tutorial for Google and AI SEO
Ahrefs · 2026-02-18Paid Search Association AMA: AI Max Q&A
Google Ads · 2026-07-15How to Dominate AI Search in 2026 (Complete Tutorial for Business)
HubSpot Marketing · 2026-05-20Why Google LOVES Reddit (And How Marketers Can Exploit It)
Neil Patel · 2026-02-19Publicis-LiveRamp deal: what to know and how to react, with Garett Sloane
Ad Age · 2026-06-05I Outsourced our Digital Marketing to AI. Here's What Happened
Ahrefs · 2026-02-04PPC Chat Q&A: Ads in AI Search, QFC & Creator Partnerships
Google Ads · 2026-07-096 B2B Marketing Strategies Replacing the Old Playbook in 2026
HubSpot Marketing · 2026-05-11You're Wasting Your Money on Influencer Marketing
Neil Patel · 2026-02-11Top SEO Experts Build Me an AI Search Strategy (GEO)
Ahrefs · 2026-01-21Streamline your workflow with Ask Advisor in Google Ads
Google Ads · 2026-07-0922 Genius Marketing Campaigns You Can Run Without a Big Budget
HubSpot Marketing · 2026-05-06Everything you know about Marketing is changing (2026)
Neil Patel · 2026-02-05How to Transfer Google Ads Account to a New Agency (Billing Transfer)
Google Ads · 2026-06-24Do Reddit Ads Actually Work? I Ran a $100 Experiment (Full Results)
HubSpot Marketing · 2026-05-04You’re Wasting Your Time Creating Social Media Content
Neil Patel · 2026-01-29Ads Data Hub: Privacy checks explained [Tutorial]
Google Ads · 2026-06-233 Creator Economy Trends Every Brand Needs to Know in 2026 (HubSpot Report)
HubSpot Marketing · 2026-04-27Google Ads Data Collection Policy: Avoid Account Suspension (2026)
Google Ads · 2026-06-22Anatomy of a Viral Campaign: How We Built Loop Marketing
HubSpot Marketing · 2026-04-22Google Ads Other Restricted Businesses Policy [Avoid Disapproval Guide]
Google Ads · 2026-06-16Claude AI for Business: The Complete Marketing Tutorial
HubSpot Marketing · 2026-04-20Google Ads Limited Ad Serving? How to Fix It (2026 Guide)
Google Ads · 2026-06-155 NEW Email Marketing Trends That Actually Work in 2026
HubSpot Marketing · 2026-04-15Google Ads Bidding Update: How to Maintain Predictable Performance (2026 Guide)
Google Ads · 2026-06-12How to Make Professional Video Ads on Any Budget (AI Finally Made It Possible)
HubSpot Marketing · 2026-04-13Google Ads for Crypto: How to Get Certified & Avoid Bans (Tutorial)
Google Ads · 2026-06-10The Marketing Playbook That Helped This Gym Beat Equinox
HubSpot Marketing · 2026-04-08Google Ads Editorial Policy: How to Fix Ad Disapprovals
Google Ads · 2026-06-09How to Dispute or Change Google Ads Invoices
Google Ads · 2026-05-28Google Marketing Live: Backstage with our product experts
Google Ads · 2026-05-28
Getting found in search
AI, AEO and what is changing
- GEO vs SEO
- How AI will affect SEO
- AI automation agency
- AI automation cost
- AI customer service
- AI in digital advertising
- AI for email marketing
- AI for restaurant social media
- Generative engine optimization agency
- AI visibility best practices
- Answer engine optimization agency
- AEO vs GEO vs LLM SEO
- LLM SEO: the technical side
- How to rank in ChatGPT
- AI visibility tools compared
- AI visibility audit
- AI SEO agency
- AI search statistics, traced
- AI SEO in New York
- AEO vs SEO: what transfers
- AEO pricing: what it costs
- AEO agency: how to choose one
- What is AEO? Defined
- AEO services: what you receive
- AEO audit: the full checklist
- AI search optimization: two engines
- AEO tools: which class you need
- LLM visibility: what it measures
- Why AI recommends your competitor
- AEO search landscape: original dataset
- How AI search works: the pipeline
- How to get cited by AI: nine moves
- AEO myths: twelve claims assessed
- How long AEO takes
- Local AEO: why it differs
- Enterprise AEO: the real blockers
- AI visibility trackers vs rank tracking
- Why AI visibility dropped
- AEO content writing: six rules
- AEO for small business: where to start
- AI answers vs organic search
- AEO experts: the six skills
- AEO pros and cons
- AEO and paid search together
- URLs and AI citation
- AEO for dentists
- AEO for doctors
- AEO for plastic surgeons
- AEO for chiropractors
- AEO for therapists
- AEO for med spas
- AEO for fintech
- AEO for plumbers
- AEO for roofers
- AEO for HVAC
- AEO for landscapers
- AEO for hotels
- AEO for wineries
- AEO for ecommerce
- Free tool: llms.txt generator
- Free tool: schema vs copy validator
- Free tool: extractable content checker
- Free tool: AI visibility prompt builder
- Free tool: schema markup generator
- Free tool: ROAS and break-even calculator
- Free tool: AI visibility checker
- Free tool: Google Ads search terms auditor
- Free tool: Google Business Profile and NAP audit
- AI SEO agency, Austin
- AI SEO agency, Los Angeles
- AI SEO agency, Miami
- AI SEO agency, Phoenix
- AI SEO agency, Philadelphia
- AI SEO agency, Boston
- AI SEO agency, Dallas
- AI SEO agency, Chicago
- AI SEO agency, Houston
- AI SEO agency, Denver
- AI SEO agency, Seattle
- AI SEO agency, Atlanta
Paid media and lead generation
Websites and design
Choosing and working with an agency
Social, content and brand
By industry and by situation
Frequently asked questions
Is this a robots.txt checker?
How do I check robots.txt for AI crawlers specifically?
Do I need a separate robots.txt check as well?
What is GPTBot?
Does blocking GPTBot remove me from ChatGPT?
How do I block GPTBot in robots.txt?
Does GPTBot respect robots.txt?
Should I block GPTBot?
Is this tool free?
Why does it ask me to paste the file instead of taking my URL?
Does blocking Google-Extended remove me from AI Overviews?
What is the difference between GPTBot and OAI-SearchBot?
Should I block AI crawlers at all?
Is robots.txt actually enforced?
Does blocking a crawler remove content that was already crawled?
What does ‘no rule at all’ mean in the results?
Why does it test a specific path?
How does it decide between a conflicting Allow and Disallow?
Does it handle wildcards?
Why link to each operator’s documentation?
My file has no User-agent: * group. Is that bad?
Can this tell me why I am not appearing in AI answers?
How often should I re-run it?
Does the tool store or log what I paste?
Can I use this for a client site?
What if a crawler I care about is not listed?
Does blocking Bytespider or CCBot matter?
Is there a version that checks a whole site?
What should I do first if the results look wrong?
Does this replace Search Console?
Sources and further reading
- Google Search Essentials — SEO starter guide
- Google: creating helpful, reliable, people-first content
- Google: intro to structured data
- Google: LocalBusiness structured data
- Google: FAQPage structured data
- Google: Article structured data
- Google: Product structured data
- Google: title links in search results
- Google: control your snippets
- Google: robots.txt introduction
- Google: sitemaps overview
- Google: consolidate duplicate URLs
- Google: redirects and Search
- Google: JavaScript SEO basics
- Google: multi-regional and multilingual sites
- Google Search Central Blog
- Google: get started with Search Console
- Google: how local search results are determined
- Google Business Profile: prohibited and restricted content
- Google Business Profile: address and service area guidelines
- Google Business Profile: review policy
- Google Business Profile: add or edit categories
- Google Ads: location targeting settings
- Google Ads: about negative keywords
- Google Ads: about Quality Score
- Google Ads: importing offline conversions
- Google Ads: about Smart Bidding
- Google Ads: about Performance Max
- Google Local Services Ads: eligibility and screening
- Google Ads: keyword match types
- Google Analytics 4: about conversions
- Google Analytics 4: attribution models
- US Census Bureau QuickFacts: New Jersey
- US Census Bureau: American Community Survey
- US Census: Statistics of US Businesses
- Bureau of Labor Statistics: New Jersey data
- BLS: Occupational Employment and Wage Statistics
- NJ Department of Labor: labor market information
- New Jersey Business Action Center
- US Small Business Administration: New Jersey district
- USA.gov: business resources
- web.dev: Core Web Vitals explained
- web.dev: Largest Contentful Paint
- web.dev: Cumulative Layout Shift
- web.dev: Interaction to Next Paint
- Google PageSpeed Insights
- Google Rich Results Test
- Google Search Console
- W3C Markup Validation Service
- Schema.org: LocalBusiness type
- Schema.org: Service type
- Schema.org: FAQPage type
- Schema.org: HowTo type
- W3C: WCAG 2.2 quick reference
- FTC: CAN-SPAM Act compliance guide
- FCC: telemarketing and robocall rules (TCPA)
- FTC endorsement guides — reviews and testimonials
- FTC: rule on consumer reviews and testimonials
- HHS: HIPAA guidance on online tracking technologies
- New Jersey Courts: attorney advertising guidelines
- New Jersey DCA: construction codes and permits
- New Jersey Home Improvement Contractor registration
- New Jersey Division of Consumer Affairs
- TikTok for Business
- TikTok Creative Center
- TikTok Ads Help Center
- TikTok Community Guidelines
- TikTok Terms of Service
- TikTok Privacy Policy
- TikTok Safety Center
- TikTok Transparency Center
- TikTok Creator Portal
- TikTok Newsroom
- TikTok for Developers
- TikTok advertising solutions
- TikTok Creator Marketplace
- TikTok Business Center
- TikTok for Business blog
- TikTok Creative Center: top ads
- TikTok Branded Content policy
- TikTok Shop for sellers
- Instagram for Business
- Instagram for Creators
- Instagram Help Center
- About Instagram
- Meta Business Suite
- Meta Business Help Center
- Meta Transparency Center
- About Meta
- Meta: Instagram platform docs
- YouTube Creators
- YouTube Official Blog
- YouTube Shorts help
- How YouTube Works
- YouTube Studio
- LinkedIn Marketing Solutions
- LinkedIn Help
- Pinterest Business
- Pinterest Business Help
- Snapchat for Business
- X for Business
- Reddit communities
- Reddit for Business Help
- ASCAP
- BMI
- SESAC
- Global Music Rights
- PRS for Music (UK)
- PPL (UK)
- SOCAN (Canada)
- APRA AMCOS (Australia)
- GEMA (Germany)
- SACEM (France)
- SIAE (Italy)
- JASRAC (Japan)
- IFPI
- RIAA
- National Music Publishers Association
- Harry Fox Agency
- SoundExchange
- Music Reports
- Epidemic Sound
- Artlist
- Soundstripe
- PremiumBeat
- AudioJungle
- Free Music Archive
- Creative Commons
- Incompetech
- FTC: advertising and marketing
- FTC: disclosures 101
- FTC: endorsement guides
- FTC: consumer reviews rule
- FTC: advertising FAQs
- US Copyright Office
- US Copyright Office: DMCA
- US Copyright Office: music FAQ
- US Copyright Office: fair use FAQ
- USPTO: trademarks
- UK Advertising Standards Authority
- ACCC (Australia)
- Competition Bureau Canada
- GDPR overview
- California Consumer Privacy Act
- COPPA
- FTC: children’s privacy
- W3C Web Accessibility Initiative
- W3C: WCAG
- W3C: captions
- W3C: making audio and video accessible
- ADA.gov
- WebAIM
- Epilepsy Foundation
- Pew Research: internet and technology
- DataReportal
- US Census Bureau
- US Bureau of Labor Statistics
- Interactive Advertising Bureau
- Think with Google
- Google Trends
- Nielsen insights
- Schema.org: VideoObject
- Schema.org: SocialMediaPosting
- Schema.org: MusicRecording
- Schema.org: HowTo
- Schema.org: FAQPage
- Schema.org: Organization
- Google: video best practices
- Google: video structured data
- CapCut
- Adobe Premiere Rush
- DaVinci Resolve
- Canva
- Descript
- VEED
- Kapwing
- Otter.ai
- Later
- Buffer
- Hootsuite
- Sprout Social
- Google Analytics
- Google Search Console
- Google Analytics developer docs
- GA4: events and conversions
- Matomo
- Plausible Analytics
- Similarweb
- UK Information Commissioner’s Office
- Office of the Privacy Commissioner of Canada
- Australian OAIC
- European Data Protection Board
- EU data protection
- EU Digital Services Act
- Ofcom
- FCC
- AIGA
- Nielsen Norman Group
- Smashing Magazine
- web.dev
- MDN: web media
- MDN: the video element
- ISO 21001 (reference)
- Buma/Stemra (Netherlands)
- STIM (Sweden)
- Teosto (Finland)
- Koda (Denmark)
- TONO (Norway)
- IMRO (Ireland)
- SGAE (Spain)
- ZAiKS (Poland)
- KOMCA (South Korea)
- MCSC (China)
- CISAC
- World Intellectual Property Organization
- TikTok: creating videos
- TikTok: exploring videos
- TikTok: privacy settings
- TikTok: growing your audience
- TikTok Creator Academy
- TikTok Effect House
- TikTok for small business
- Instagram: Reels help
- YouTube: Shorts best practice
- How YouTube recommends
- Pinterest Predicts
- Snapchat for Business
- Hootsuite blog
- Social Media Examiner
- Marketing Week
- Adweek
- Google Search Essentials — SEO starter guide
- Google: creating helpful, reliable, people-first content
- Google: intro to structured data
- Google: LocalBusiness structured data
- Google: FAQPage structured data
- Google: Article structured data
- Google: Product structured data
- Google: title links in search results
- Google: control your snippets
- Google: robots.txt introduction
- Google: sitemaps overview
- Google: consolidate duplicate URLs
- Google: redirects and Search
- Google: JavaScript SEO basics
- Google: multi-regional and multilingual sites
- Google Search Central Blog
- Google: get started with Search Console
- Google: how local search results are determined
- Google Business Profile: prohibited and restricted content
- Google Business Profile: address and service area guidelines
- Google Business Profile: review policy
- Google Business Profile: add or edit categories
- web.dev: Core Web Vitals explained
- web.dev: Largest Contentful Paint
- web.dev: Cumulative Layout Shift
- web.dev: Interaction to Next Paint
- Google PageSpeed Insights
- Google Rich Results Test
- Google Search Console
- W3C Markup Validation Service
- Schema.org: LocalBusiness type
- Schema.org: Service type
- Schema.org: FAQPage type
- Schema.org: HowTo type
- W3C: WCAG 2.2 quick reference
- US Census Bureau QuickFacts: New Jersey
- US Census Bureau: American Community Survey
- US Census: Statistics of US Businesses
- Bureau of Labor Statistics: New Jersey data
- BLS: Occupational Employment and Wage Statistics
- NJ Department of Labor: labor market information
- New Jersey Business Action Center
- US Small Business Administration: New Jersey district
- USA.gov: business resources
- OpenAI – GPTBot documentation
- OpenAI – OAI-SearchBot documentation
- OpenAI – ChatGPT-User documentation
- Anthropic – ClaudeBot documentation
- Anthropic – Claude-User documentation
- Anthropic – Claude-SearchBot documentation
- Perplexity – PerplexityBot documentation
- Perplexity – Perplexity-User documentation
- Google – Google-Extended documentation
- Google – Googlebot documentation
- Microsoft – Bingbot documentation
- Apple – Applebot documentation
- Apple – Applebot-Extended documentation
- Amazon – Amazonbot documentation
- Meta – meta-externalagent documentation
- Common Crawl – CCBot documentation
Want this done for your site?We build and maintain the search, content and paid programmes described on this page.
Get a free marketing proposal
Tell us what you are trying to grow and we will come back with a plan, not a pitch deck. Same-day reply on weekdays.
